lib/puppet/util/command_line/puppetd in puppet-2.6.4 vs lib/puppet/util/command_line/puppetd in puppet-2.6.5
- old
+ new
@@ -9,11 +9,11 @@
#
# = Usage
#
# puppet agent [-D|--daemonize|--no-daemonize] [-d|--debug]
# [--detailed-exitcodes] [--disable] [--enable]
-# [-h|--help] [--fqdn <host name>] [-l|--logdest syslog|<file>|console]
+# [-h|--help] [--certname <host name>] [-l|--logdest syslog|<file>|console]
# [-o|--onetime] [--serve <handler>] [-t|--test] [--noop]
# [--digest <digest>] [--fingerprint] [-V|--version]
# [-v|--verbose] [-w|--waitforcert <seconds>]
#
# = Description
@@ -58,12 +58,12 @@
# request) fingerprint. Providing the +--digest+ option allows to use a different
# digest algorithm to generate the fingerprint. The main use is to verify that
# before signing a certificate request on the master, the certificate request the
# master received is the same as the one the client sent (to prevent against
# man-in-the-middle attacks when signing certificates).
-#
#
+#
# = Options
#
# Note that any configuration parameter that's valid in the configuration file
# is also a valid long argument. For example, 'server' is a valid configuration
# parameter, so you can specify '--server <servername>' as an argument.
@@ -111,14 +111,15 @@
# +puppet agent+ to start managing the local system again (although it will continue
# to use its normal scheduling, so it might not start for another half hour).
#
# +puppet agent+ exits after executing this.
#
-# fqdn::
-# Set the fully-qualified domain name of the client. This is only used for
-# certificate purposes, but can be used to override the discovered hostname.
-# If you need to use this flag, it is generally an indication of a setup problem.
+# certname::
+# Set the certname (unique ID) of the client. The master reads this unique
+# identifying string, which is usually set to the node's fully-qualified domain
+# name, to determine which configurations the node will receive. Use this option
+# to debug setup problems or implement unusual node identification schemes.
#
# help::
# Print this help message
#
# logdest::
@@ -130,12 +131,12 @@
# Do not create a config client. This will cause the daemon to run
# without ever checking for its configuration automatically, and only
# makes sense when used in conjunction with --listen.
#
# onetime::
-# Run the configuration once. Runs a single (normally daemonized) Puppet run.
-# Useful for interactively running puppet agent when used in conjunction with
+# Run the configuration once. Runs a single (normally daemonized) Puppet run.
+# Useful for interactively running puppet agent when used in conjunction with
# the --no-daemonize option.
#
# fingerprint::
# Display the current certificate or certificate signing request fingerprint
# and then exit. Use the +--digest+ option to change the digest algorithm used.
@@ -148,10 +149,11 @@
# or resource. The handlers are in +lib/puppet/network/handler+, and the names
# must match exactly, both in the call to +serve+ and in +namespaceauth.conf+.
#
# test::
# Enable the most common options used for testing. These are +onetime+,
-# +verbose+, +ignorecache, +no-daemonize+, and +no-usecacheonfailure+.
+# +verbose+, +ignorecache, +no-daemonize+, +no-usecacheonfailure+,
+# +detailed-exit-codes+, +no-splay+, and +show_diff+.
#
# noop::
# Use +noop+ mode where the daemon runs in a no-op or dry-run mode. This is useful
# for seeing what changes Puppet will make without actually executing the changes.
#