From b0ca6b1fc4c365463837553e925b472dc2d7e7f6 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Sat, 28 Dec 2019 14:19:40 +0100 Subject: ipv6: T1912: remove debug print() --- src/conf_mode/system-ipv6.py | 1 - 1 file changed, 1 deletion(-) 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'])) -- cgit v1.2.3