Sha256: fad99dd2c9b549432a18050e04a862a39390fb9000750da21ddfb975a4850e4a

Contents?: true

Size: 812 Bytes

Versions: 5

Compression:

Stored size: 812 Bytes

Contents

#!/usr/bin/env ruby

#
# = Synopsis
#
# Print help about puppet types on the console. Run with '-h' to get detailed
# help.
# = Usage
#
#   pi [-h|--help] [-s|--short] [-p|--providers] [-l|--list] [-m|--meta] 
#
# = Description
#
# Prints details of Puppet types, providers and metaparameters on the console.
#
# = Options
#
# help::
#   Print this help text
#
# providers::
#   Describe providers in detail for each type
#
# list::
#   List all types
#
# meta::
#   List all metaparameters
#
# short::
#   List only parameters without detail 
#
# = Example
#
#   pi --list
#   pi file --providers
#   pi user -s -m
#
# = Author
#
# David Lutterkort
#
# = Copyright
#
# Copyright (c) 2005 Reductive Labs, LLC
# Licensed under the GNU Public License

require 'puppet/application/pi'

Puppet::Application[:pi].run

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
puppet-0.25.4 bin/pi
puppet-0.25.3 bin/pi
puppet-0.25.2 bin/pi
puppet-0.25.1 bin/pi
puppet-0.25.0 bin/pi