summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-11-30 09:09:05 +0100
committerChristian Poessinger <christian@poessinger.com>2020-02-23 14:36:56 +0100
commit70049969d8e3c28c8ae7a342fa84eb35ed5c9e14 (patch)
treeebef176e529e71428b14ba22918e81581c826297
parentf9120cd8b866cbcd6aaaa48f5fc8303f034cad50 (diff)
downloadvyos-1x-70049969d8e3c28c8ae7a342fa84eb35ed5c9e14.tar.gz
vyos-1x-70049969d8e3c28c8ae7a342fa84eb35ed5c9e14.zip
pppoe: T1318: remove process startup debug output
We no longer need to see the command which is used to spawn up PPPd and dial the connection.
-rwxr-xr-xsrc/conf_mode/interfaces-pppoe.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/conf_mode/interfaces-pppoe.py b/src/conf_mode/interfaces-pppoe.py
index 16c59b39b..6c194f60b 100755
--- a/src/conf_mode/interfaces-pppoe.py
+++ b/src/conf_mode/interfaces-pppoe.py
@@ -126,7 +126,6 @@ default_config_data = {
}
def subprocess_cmd(command):
- print(command)
p = Popen(command, stdout=PIPE, shell=True)
p.communicate()