summaryrefslogtreecommitdiff
path: root/src/conf_mode/system-ipv6.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-12-28 14:19:40 +0100
committerChristian Poessinger <christian@poessinger.com>2019-12-28 14:19:40 +0100
commitb0ca6b1fc4c365463837553e925b472dc2d7e7f6 (patch)
tree383edc54b1cf49f18bd0c025225acd841c80f3e8 /src/conf_mode/system-ipv6.py
parentedc7183f0f3a51594c21bdc9c7be48b7d0174644 (diff)
downloadvyos-1x-b0ca6b1fc4c365463837553e925b472dc2d7e7f6.tar.gz
vyos-1x-b0ca6b1fc4c365463837553e925b472dc2d7e7f6.zip
ipv6: T1912: remove debug print()
Diffstat (limited to 'src/conf_mode/system-ipv6.py')
-rwxr-xr-xsrc/conf_mode/system-ipv6.py1
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']))