From 12b8050b56f45812cb11aa093f96225889903fde Mon Sep 17 00:00:00 2001 From: Seth Schoen Date: Fri, 10 Aug 2012 18:14:54 -0700 Subject: [PATCH] trying to suppress more output --- client-webserver/configurator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-webserver/configurator.py b/client-webserver/configurator.py index a1c1b4e4e..de6d65b8f 100644 --- a/client-webserver/configurator.py +++ b/client-webserver/configurator.py @@ -386,7 +386,7 @@ class Configurator(object): """ # Use check_output so the command will finish before reloading the server subprocess.check_output(["sudo", "a2enmod", "ssl"]) - subprocess.call(["sudo", "/etc/init.d/apache2", "reload"]) + subprocess.call(["sudo", "/etc/init.d/apache2", "reload"], stdout=None, stderr=None) """ a_conf = SERVER_ROOT + "mods-available/ssl.conf" a_load = SERVER_ROOT + "mods-available/ssl.load"