diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-03-25 20:28:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-25 20:28:00 +0100 |
commit | 515b577b62e420d0a89d02ec5af3bb066a2b785a (patch) | |
tree | 4f39d56d94d0858570b95348ab4fc19573e3b810 /smoketest | |
parent | 7c0be25eea90cf9324e421b6c2dfda9bda2ecb7e (diff) | |
parent | 98f923bd0f4dd66db5c89f38f9aa3c13ba23edcd (diff) | |
download | vyos-1x-515b577b62e420d0a89d02ec5af3bb066a2b785a.tar.gz vyos-1x-515b577b62e420d0a89d02ec5af3bb066a2b785a.zip |
Merge pull request #3188 from nicolas-fort/T6171
T6171: migrate <set service dhcp-server failover> to <set service dhcp-server high-availability>
Diffstat (limited to 'smoketest')
-rwxr-xr-x | smoketest/scripts/cli/test_service_dhcp-server.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/smoketest/scripts/cli/test_service_dhcp-server.py b/smoketest/scripts/cli/test_service_dhcp-server.py index b582a2108..24bd14af2 100755 --- a/smoketest/scripts/cli/test_service_dhcp-server.py +++ b/smoketest/scripts/cli/test_service_dhcp-server.py @@ -673,7 +673,7 @@ class TestServiceDHCPServer(VyOSUnitTestSHIM.TestCase): # Check for running process self.assertTrue(process_named_running(PROCESS_NAME)) - def test_dhcp_failover(self): + def test_dhcp_high_availability(self): shared_net_name = 'FAILOVER' failover_name = 'VyOS-Failover' @@ -695,10 +695,10 @@ class TestServiceDHCPServer(VyOSUnitTestSHIM.TestCase): failover_local = router failover_remote = inc_ip(router, 1) - self.cli_set(base_path + ['failover', 'source-address', failover_local]) - self.cli_set(base_path + ['failover', 'name', failover_name]) - self.cli_set(base_path + ['failover', 'remote', failover_remote]) - self.cli_set(base_path + ['failover', 'status', 'primary']) + self.cli_set(base_path + ['high-availability', 'source-address', failover_local]) + self.cli_set(base_path + ['high-availability', 'name', failover_name]) + self.cli_set(base_path + ['high-availability', 'remote', failover_remote]) + self.cli_set(base_path + ['high-availability', 'status', 'primary']) # commit changes self.cli_commit() |