diff options
author | carey.xu <carey.xuhan@huawei.com> | 2015-11-26 18:00:55 +0800 |
---|---|---|
committer | carey.xu <carey.xuhan@huawei.com> | 2015-12-01 07:29:39 +0800 |
commit | e93d595baf9b3fbbc0ec213ad725ce438772d8a4 (patch) | |
tree | e9e2a5e6a3e5abc4cd9a44228e47796c5e86fc4b /deploy/adapters/ansible/roles/ha/templates | |
parent | a5d9a6384c09ff8e84c7e6bfefb9b9202b0c2341 (diff) |
support libverty on ubuntu
JIRA: COMPASS-169
Change-Id: I4656cf43eb3db0ba61fae4b03416b9c0239bb50b
Signed-off-by: carey.xu <carey.xuhan@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/ha/templates')
-rw-r--r-- | deploy/adapters/ansible/roles/ha/templates/keepalived.conf | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/deploy/adapters/ansible/roles/ha/templates/keepalived.conf b/deploy/adapters/ansible/roles/ha/templates/keepalived.conf index d6f424cd..c2af86b0 100644 --- a/deploy/adapters/ansible/roles/ha/templates/keepalived.conf +++ b/deploy/adapters/ansible/roles/ha/templates/keepalived.conf @@ -14,9 +14,8 @@ vrrp_instance internal_vip { virtual_router_id {{ vrouter_id_internal }} state BACKUP nopreempt - preempt_delay 30 advert_int 1 - priority 100 + priority {{ 50 + (host_index[inventory_hostname] * 50) }} authentication { auth_type PASS @@ -33,9 +32,8 @@ vrrp_instance public_vip { virtual_router_id {{ vrouter_id_public }} state BACKUP nopreempt - preempt_delay 30 advert_int 1 - priority 100 + priority {{ 50 + (host_index[inventory_hostname] * 50) }} authentication { auth_type PASS |