summaryrefslogtreecommitdiffstats
path: root/bin/puppetmasterd
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2005-08-30 00:13:53 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2005-08-30 00:13:53 +0000
commit998b4155dfc7a783b6dba5beafa272b579e98381 (patch)
tree6d815be734b2461d912b0e3b5b42ba12c3c82de5 /bin/puppetmasterd
parent7f274a4c53a676ab471a823b4d281d7708edf70d (diff)
downloadpuppet-998b4155dfc7a783b6dba5beafa272b579e98381.tar.gz
puppet-998b4155dfc7a783b6dba5beafa272b579e98381.tar.xz
puppet-998b4155dfc7a783b6dba5beafa272b579e98381.zip
correcting documentation on autosign in puppetmasterd, and switching the autosign.conf file to use the same authstore as fileserver.conf
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@609 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'bin/puppetmasterd')
-rwxr-xr-xbin/puppetmasterd7
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/puppetmasterd b/bin/puppetmasterd
index c36a62566..df59e6430 100755
--- a/bin/puppetmasterd
+++ b/bin/puppetmasterd
@@ -20,6 +20,11 @@
#
# = Options
#
+# autosign::
+# Enable autosign (which presents a potential security problem). If enabled,
+# refers to the autosign configuration file at /etc/puppet/autosign.conf to
+# determine which hosts should have their certificates signed.
+#
# debug::
# Enable full debugging. Causes the daemon not to go into the background.
#
@@ -115,7 +120,7 @@ begin
result.each { |opt,arg|
case opt
when "--autosign"
- ca[:autosign] = true
+ ca[:autosign] = Puppet[:autosign]
when "--debug"
Puppet[:debug] = true
when "--fsconfig"