summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Wolfe <jes5199@gmail.com>2011-02-03 14:48:54 -0800
committerJesse Wolfe <jes5199@gmail.com>2011-02-03 16:38:17 -0800
commitf108f0330623f643343709b29921608b6c76874a (patch)
tree28b0c4f420cc9e03a3940c1bf3ad26c567a5a369
parent0502c557cbe8dc0d039e05ff5940a9e3b7e5c150 (diff)
downloadpuppet-f108f0330623f643343709b29921608b6c76874a.tar.gz
(#6018) Nick F's --help text for puppet inspect.
-rw-r--r--lib/puppet/application/inspect.rb53
1 files changed, 53 insertions, 0 deletions
diff --git a/lib/puppet/application/inspect.rb b/lib/puppet/application/inspect.rb
index 77e8476a2..52ef97530 100644
--- a/lib/puppet/application/inspect.rb
+++ b/lib/puppet/application/inspect.rb
@@ -19,6 +19,59 @@ class Puppet::Application::Inspect < Puppet::Application
end
end
+ def help
+ puts <<-HELP ; exit # XXX
+
+SYNOPSIS
+========
+
+Prepare and submit an inspection report to the puppet master.
+
+
+USAGE
+=====
+
+ puppet inspect
+
+
+DESCRIPTION
+===========
+
+This command uses the cached catalog from the previous run of 'puppet
+agent' to determine which attributes of which resources have been
+marked as auditable with the 'audit' metaparameter. It then examines
+the current state of the system, writes the state of the specified
+resource attributes to a report, and submits the report to the puppet
+master.
+
+Puppet inspect does not run as a daemon, and must be run manually or from cron.
+
+
+OPTIONS
+=======
+
+Any configuration setting which is valid in the configuration file is
+also a valid long argument, e.g. '--server=master.domain.com'. See the
+configuration file documentation at
+http://docs.puppetlabs.com/references/latest/configuration.html for
+the full list of acceptable settings.
+
+
+AUTHOR
+======
+
+Puppet Labs
+
+
+COPYRIGHT
+=========
+
+Copyright (c) 2011 Puppet Labs, LLC
+Licensed under the GNU General Public License version 2
+
+ HELP
+ end
+
def setup
exit(Puppet.settings.print_configs ? 0 : 1) if Puppet.settings.print_configs?