diff options
author | Luke Kanies <luke@madstop.com> | 2008-05-20 10:19:10 -0500 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-05-20 10:19:10 -0500 |
commit | fe157f239a301abb52f81c62719355c8e50c970c (patch) | |
tree | 2ff683d14dbf5c95a99410fe1d12300368cf497e /bin | |
parent | 3cb0d60d3d0870f1d9ac83e5dbeaa06d2888231f (diff) | |
parent | 84a787a2a764a5035f7cbb8d30f94fc601bed154 (diff) | |
download | puppet-fe157f239a301abb52f81c62719355c8e50c970c.tar.gz |
Merge branch '0.24.x'
Conflicts:
CHANGELOG
spec/integration/defaults.rb
spec/integration/node/catalog.rb
spec/unit/rails.rb
spec/unit/type/mount.rb
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/puppetd | 8 | ||||
-rwxr-xr-x | bin/ralsh | 2 |
2 files changed, 7 insertions, 3 deletions
diff --git a/bin/puppetd b/bin/puppetd index b92773c76..d408af7d3 100755 --- a/bin/puppetd +++ b/bin/puppetd @@ -10,7 +10,7 @@ # # puppetd [-D|--daemonize|--no-daemonize] [-d|--debug] [--disable] [--enable] # [-h|--help] [--fqdn <host name>] [-l|--logdest syslog|<file>|console] -# [-o|--onetime] [--serve <handler>] [-t|--test] +# [-o|--onetime] [--serve <handler>] [-t|--test] [--noop] # [-V|--version] [-v|--verbose] [-w|--waitforcert <seconds>] # # = Description @@ -57,7 +57,7 @@ # parameter, so you can specify '--server <servername>' as an argument. # # See the configuration file documentation at -# http://reductivelabs.com/projects/puppet/reference/configref.html for +# http://reductivelabs.com/trac/puppet/wiki/ConfigurationReference for # the full list of acceptable parameters. A commented list of all # configuration options can also be generated by running puppetd with # '--genconfig'. @@ -124,6 +124,10 @@ # Enable the most common options used for testing. These are +onetime+, # +verbose+, +ignorecache, and +no-usecacheonfailure+. # +# 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. +# # verbose:: # Turn on verbose reporting. # @@ -65,7 +65,7 @@ # # This example uses ``ralsh`` to return Puppet configuration for the user ``luke``:: # -# $ ralsh user luke +# $ ralsh user luke # user { 'luke': # home => '/home/luke', # uid => '100', |