diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-03-25 19:38:48 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-03-25 19:38:48 +0100 |
commit | 6249c2abe7e40a6671549d318ee9b0fbd622b991 (patch) | |
tree | c7a9bd6830c1ae11721f1aad9949dfd9683657ab | |
parent | 625ea99e69a319c88fa67125438fdc457eaaaed3 (diff) | |
download | vyos-1x-6249c2abe7e40a6671549d318ee9b0fbd622b991.tar.gz vyos-1x-6249c2abe7e40a6671549d318ee9b0fbd622b991.zip |
smoketest: ipv6: fix testcase after using new sysctl interface
-rwxr-xr-x | smoketest/scripts/cli/test_system_ipv6.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/smoketest/scripts/cli/test_system_ipv6.py b/smoketest/scripts/cli/test_system_ipv6.py index 1325d4b39..3112d2e46 100755 --- a/smoketest/scripts/cli/test_system_ipv6.py +++ b/smoketest/scripts/cli/test_system_ipv6.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2021 VyOS maintainers and contributors +# Copyright (C) 2021-2022 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -22,7 +22,7 @@ from vyos.util import read_file base_path = ['system', 'ipv6'] file_forwarding = '/proc/sys/net/ipv6/conf/all/forwarding' -file_disable = '/etc/modprobe.d/vyos_disable_ipv6.conf' +file_disable = '/proc/sys/net/ipv6/conf/all/disable_ipv6' file_dad = '/proc/sys/net/ipv6/conf/all/accept_dad' file_multipath = '/proc/sys/net/ipv6/fib_multipath_hash_policy' @@ -48,7 +48,7 @@ class TestSystemIPv6(VyOSUnitTestSHIM.TestCase): self.cli_commit() # Verify configuration file - self.assertEqual(read_file(file_disable), 'options ipv6 disable_ipv6=1') + self.assertEqual(read_file(file_disable), '1') def test_system_ipv6_strict_dad(self): # This defaults to 1 |