diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-09-21 20:29:36 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-09-21 20:18:54 +0000 |
commit | 65398e5c8aedf2f206bb706e97aa828e409d07b3 (patch) | |
tree | 648ce98ae0d30b3576bbd289d2a35230e5441c45 /smoketest/scripts/cli/test_ha_vrrp.py | |
parent | 259e0458ff89b88493f98a5730c4fc91ff9da10f (diff) | |
download | vyos-1x-65398e5c8aedf2f206bb706e97aa828e409d07b3.tar.gz vyos-1x-65398e5c8aedf2f206bb706e97aa828e409d07b3.zip |
vrrp: keepalived: T616: move configuration to volatile /run directory
Move keepalived configuration from /etc/keepalived to /run/keepalived.
(cherry picked from commit b243795eba1b36cadd81c3149e833bdf5c5bea70)
Diffstat (limited to 'smoketest/scripts/cli/test_ha_vrrp.py')
-rwxr-xr-x | smoketest/scripts/cli/test_ha_vrrp.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/smoketest/scripts/cli/test_ha_vrrp.py b/smoketest/scripts/cli/test_ha_vrrp.py index 03618c7d8..9c8d26699 100755 --- a/smoketest/scripts/cli/test_ha_vrrp.py +++ b/smoketest/scripts/cli/test_ha_vrrp.py @@ -14,22 +14,20 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -import os -import re import unittest from base_vyostest_shim import VyOSUnitTestSHIM from vyos.configsession import ConfigSession from vyos.configsession import ConfigSessionError +from vyos.ifconfig.vrrp import VRRP from vyos.util import cmd from vyos.util import process_named_running from vyos.util import read_file - from vyos.template import inc_ip PROCESS_NAME = 'keepalived' -KEEPALIVED_CONF = '/etc/keepalived/keepalived.conf' +KEEPALIVED_CONF = VRRP.location['config'] base_path = ['high-availability', 'vrrp'] vrrp_interface = 'eth1' |