diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-12-28 14:19:40 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-12-28 14:19:40 +0100 |
commit | b0ca6b1fc4c365463837553e925b472dc2d7e7f6 (patch) | |
tree | 383edc54b1cf49f18bd0c025225acd841c80f3e8 | |
parent | edc7183f0f3a51594c21bdc9c7be48b7d0174644 (diff) | |
download | vyos-1x-b0ca6b1fc4c365463837553e925b472dc2d7e7f6.tar.gz vyos-1x-b0ca6b1fc4c365463837553e925b472dc2d7e7f6.zip |
ipv6: T1912: remove debug print()
-rwxr-xr-x | src/conf_mode/system-ipv6.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/conf_mode/system-ipv6.py b/src/conf_mode/system-ipv6.py index a39d00f9f..cfbbf80ee 100755 --- a/src/conf_mode/system-ipv6.py +++ b/src/conf_mode/system-ipv6.py @@ -109,7 +109,6 @@ def apply(ip_opt): for root, dirs, files in os.walk('/proc/sys/net/ipv6/conf'): for name in files: if name == "accept_dad": - print(os.path.join(root, name)) with open(os.path.join(root, name), 'w') as f: f.write(str(ip_opt['strict_dad'])) |