diff options
| author | Jesse Wolfe <jes5199@gmail.com> | 2010-07-09 11:24:01 -0700 |
|---|---|---|
| committer | Markus Roberts <Markus@reality.com> | 2010-07-09 12:43:00 -0700 |
| commit | a07af2bb40f6894930ed910c66115556e10c0841 (patch) | |
| tree | 38c70723112b2dc83547b6c9dba3488573ccb6f1 /bin/puppet | |
| parent | 3c0059195fb2b1255f368d98021f4a99ecd121a6 (diff) | |
[#4196] Move the docs into the source directory structure
Since it is no longer possible to find the running executable from the
call stack, docs have to be kept somewhere in the source tree.
Of course, at this point, we shouldn't be using RDoc::Usage at all.
Diffstat (limited to 'bin/puppet')
| -rwxr-xr-x | bin/puppet | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/bin/puppet b/bin/puppet index 9b7c7d64d..c03070291 100755 --- a/bin/puppet +++ b/bin/puppet @@ -1,73 +1,4 @@ #!/usr/bin/env ruby -# -# = Synopsis -# -# Run a stand-alone +puppet+ manifest. -# -# = Usage -# -# puppet apply [-h|--help] [-V|--version] [-d|--debug] [-v|--verbose] [-e|--execute] -# [--detailed-exitcodes] [-l|--logdest <file>] <file> -# -# = Description -# -# This is the standalone puppet execution tool; use it to execute -# individual manifests that you write. If you need to execute site-wide -# manifests, use 'puppet agent' and 'puppet master'. -# -# = Options -# -# Note that any configuration parameter that's valid in the configuration file -# is also a valid long argument. For example, 'ssldir' is a valid configuration -# parameter, so you can specify '--ssldir <directory>' as an argument. -# -# See the configuration file documentation at -# 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 puppet with -# '--genconfig'. -# -# debug:: -# Enable full debugging. -# -# detailed-exitcodes:: -# Provide transaction information via exit codes. If this is enabled, an exit -# code of '2' means there were changes, and an exit code of '4' means that there -# were failures during the transaction. -# -# help:: -# Print this help message -# -# loadclasses:: -# Load any stored classes. 'puppet agent' caches configured classes (usually at -# /etc/puppet/classes.txt), and setting this option causes all of those classes -# to be set in your puppet manifest. -# -# logdest:: -# Where to send messages. Choose between syslog, the console, and a log file. -# Defaults to sending messages to the console. -# -# execute:: -# Execute a specific piece of Puppet code -# -# verbose:: -# Print extra information. -# -# = Example -# -# puppet -l /tmp/manifest.log manifest.pp -# -# = Author -# -# Luke Kanies -# -# = Copyright -# -# Copyright (c) 2005 Reductive Labs, LLC -# Licensed under the GNU Public License - -#Puppet::Application[:apply].run # this is so the RDoc::usage hack can find this file - require 'puppet/util/command_line' Puppet::Util::CommandLine.new.execute |
