diff options
| author | James Turnbull <james@lovedthanlost.net> | 2009-04-28 22:40:17 +1000 |
|---|---|---|
| committer | James Turnbull <james@lovedthanlost.net> | 2009-04-28 22:40:17 +1000 |
| commit | 929130bafc5f88512b256cfdb772299b3a54cfdb (patch) | |
| tree | 511911bab9627d35b901a2256ca72aac338ff203 /sbin | |
| parent | 36d04187fae6b091336ce52d3e428176b39207ae (diff) | |
| download | puppet-929130bafc5f88512b256cfdb772299b3a54cfdb.tar.gz puppet-929130bafc5f88512b256cfdb772299b3a54cfdb.tar.xz puppet-929130bafc5f88512b256cfdb772299b3a54cfdb.zip | |
Moved puppetqd binary
Diffstat (limited to 'sbin')
| -rwxr-xr-x | sbin/puppetqd | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/sbin/puppetqd b/sbin/puppetqd new file mode 100755 index 000000000..14a15b519 --- /dev/null +++ b/sbin/puppetqd @@ -0,0 +1,53 @@ +#!/usr/bin/env ruby +# == Synopsis +# +# Retrieve serialized records from a queue and process them in order. +# +# = Usage +# +# puppetqd [-d|--debug] [-v|--verbose] +# +# = Description +# +# This is a simple application that just processes entities in a queue as they +# are recieved. +# +# = 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. +# +# 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 puppetd with +# '--genconfig'. +# +# debug:: +# Enable full debugging. +# +# help:: +# Print this help message +# +# verbose:: +# Turn on verbose reporting. +# +# version:: +# Print the puppet version number and exit. +# +# = Example +# +# puppetqd +# +# = Author +# +# Luke Kanies +# +# = Copyright +# +# Copyright (c) 2009 Reductive Labs, LLC +# Licensed under the GNU Public License + +require 'puppet/application/puppetqd' +Puppet::Application[:puppetqd].run |
