mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 00:02:14 -04:00
trying to suppress more output
This commit is contained in:
parent
3fc22615e8
commit
12b8050b56
1 changed files with 1 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue