summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2014-10-14 10:39:32 -0500
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2014-10-14 10:39:32 -0500
commit59f8f0f6e7b07527c4cf360e34c8bfac3e0ba2bb (patch)
tree259b825bb3860933d200022f022c1c09b309ca6a /src/lib/Bcfg2/Server
parentc7e1ed8da2232fe42440439dce006e6417e58d8c (diff)
parent44a6f8bdbc3fe6ed69ed9c0ca0fe5c05b9794ea8 (diff)
downloadbcfg2-59f8f0f6e7b07527c4cf360e34c8bfac3e0ba2bb.tar.gz
bcfg2-59f8f0f6e7b07527c4cf360e34c8bfac3e0ba2bb.tar.bz2
bcfg2-59f8f0f6e7b07527c4cf360e34c8bfac3e0ba2bb.zip
Merge pull request #209 from AlexanderS/fix-password-auth
Options/Commmon: remove default values for ssl-key/ssl-cert
Diffstat (limited to 'src/lib/Bcfg2/Server')
-rw-r--r--src/lib/Bcfg2/Server/Core.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Server/Core.py b/src/lib/Bcfg2/Server/Core.py
index a2f9499f2..8cb6eb11b 100644
--- a/src/lib/Bcfg2/Server/Core.py
+++ b/src/lib/Bcfg2/Server/Core.py
@@ -1370,8 +1370,15 @@ class NetworkCore(Core):
daemonized, etc."""
options = Core.options + [
Bcfg2.Options.Common.daemon, Bcfg2.Options.Common.syslog,
- Bcfg2.Options.Common.location, Bcfg2.Options.Common.ssl_key,
- Bcfg2.Options.Common.ssl_cert, Bcfg2.Options.Common.ssl_ca,
+ Bcfg2.Options.Common.location, Bcfg2.Options.Common.ssl_ca,
+ Bcfg2.Options.PathOption(
+ '--ssl-key', cf=('communication', 'key'), dest="key",
+ help='Path to SSL key',
+ default="/etc/pki/tls/private/bcfg2.key"),
+ Bcfg2.Options.PathOption(
+ cf=('communication', 'certificate'), dest="cert",
+ help='Path to SSL certificate',
+ default="/etc/pki/tls/certs/bcfg2.crt"),
Bcfg2.Options.BooleanOption(
'--listen-all', cf=('server', 'listen_all'), default=False,
help="Listen on all interfaces"),