blob: 6ac759ed37a0c0603ab712f8c86b0e8bfe39d9ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env ruby
#
# = Synopsis
#
# Print help about puppet types on the console. Run with '-h' to get detailed
# help.
#
# FIXME: (1) Formatting could be a lot prettier
# (2) The command line options are kinda screwy; unclear how best to
# present the various pieces of info to user
require 'puppet/application'
require 'puppet/application/pi'
Puppet::Application[:pi].run
|