summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Babinsky <mbabinsk@redhat.com>2016-10-26 14:31:45 +0200
committerMartin Babinsky <mbabinsk@redhat.com>2016-10-26 14:34:27 +0200
commitdc873007f8616ab9e77f903e235ba49f45ecde37 (patch)
tree286eaaf3baeee447663afb4eb70e28f5b7b351c2
parent91920e7cb48cbf143ae281c9c073df14b2c2dddf (diff)
Revert "Fix install scripts debugging"
This reverts commit d650c54fe4e327f95ffcb834418a5b6af59b212c. The proposed fix is incorrect since the Configurable class has no knowledge about used debug options. These are used only in upper layers when configuring loggers. Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
-rw-r--r--ipaserver/install/server/install.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/ipaserver/install/server/install.py b/ipaserver/install/server/install.py
index 2ddc7cc9e..0015a8cb7 100644
--- a/ipaserver/install/server/install.py
+++ b/ipaserver/install/server/install.py
@@ -896,8 +896,6 @@ def install(installer):
args.append("--no-sshd")
if options.mkhomedir:
args.append("--mkhomedir")
- if options.debug:
- args.append("--debug")
run(args, redirect_output=True)
print()
except Exception: