PSARC 2013/426 Puppet 3.4.1 s11-update
authorDrew Fisher <drew.fisher@oracle.com>
Fri, 31 Jan 2014 14:12:10 -0700
branchs11-update
changeset 2928 43b3da52b84a
parent 2925 d64f6e80d9b1
child 2930 4177d9c0b142
PSARC 2013/426 Puppet 3.4.1 17783988 Add zone.rb to Facter 17798202 Several providers return errors due to Ruby 1.9 changes. 17945378 backport of 17257851 to 11.2 was never actually done 18010466 Update Puppet to 3.4.1
components/facter/facter.p5m
components/facter/files/solaris/lib/facter/zone.rb
components/puppet/Makefile
components/puppet/files/puppet.xml
components/puppet/files/solaris/lib/puppet/provider/boot_environment/solaris.rb
components/puppet/files/solaris/lib/puppet/provider/dns/solaris.rb
components/puppet/files/solaris/lib/puppet/provider/ipmp_interface/solaris.rb
components/puppet/files/solaris/lib/puppet/provider/ldap/solaris.rb
components/puppet/files/solaris/lib/puppet/provider/nis/solaris.rb
components/puppet/files/solaris/lib/puppet/provider/nsswitch/solaris.rb
components/puppet/files/solaris/lib/puppet/provider/pkg_publisher/solaris.rb
components/puppet/files/solaris/lib/puppet/provider/vni_interface/solaris.rb
components/puppet/files/solaris/lib/puppet/type/dns.rb
components/puppet/files/solaris/lib/puppet/type/ldap.rb
components/puppet/files/solaris/lib/puppet/type/nis.rb
components/puppet/files/solaris/lib/puppet/type/nsswitch.rb
components/puppet/patches/puppet-00-s12pkg.patch
components/puppet/patches/puppet-01-installrb-nogzip-manpage.patch
components/puppet/patches/puppet-02-zone-type.patch
components/puppet/patches/puppet-03-zone-provider.patch
components/puppet/patches/puppet-04-agent-auditing.patch
components/puppet/patches/puppet-05-apply-auditing.patch
components/puppet/patches/puppet-06-provider-smf.patch
components/puppet/puppet.p5m
components/puppet/resolve.deps
--- a/components/facter/facter.p5m	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/facter/facter.p5m	Fri Jan 31 14:12:10 2014 -0700
@@ -18,7 +18,7 @@
 #
 # CDDL HEADER END
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 
 <transform file path=usr.*/man/.+ -> default mangler.man.stability uncommitted>
@@ -117,6 +117,8 @@
 file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/facter/virtual.rb
 file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/facter/vlans.rb
 file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/facter/xendomains.rb
+file files/solaris/lib/facter/zone.rb \
+    path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/facter/zone.rb
 file path=usr/share/man/man8/facter.8
 license facter.license license="Apache v2.0"
 #
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/facter/files/solaris/lib/facter/zone.rb	Fri Jan 31 14:12:10 2014 -0700
@@ -0,0 +1,30 @@
+
+# A facter fact to determine if zones are supported
+# on a system.
+
+Facter.add("kernel_zone") do
+  confine :operatingsystem => :Solaris
+  setcode do
+      virtinfo = %x{/sbin/virtinfo list -H -o class kernel-zone 2>/dev/null}
+      case virtinfo.chomp!
+      when "supported", "current", "parent"
+          virtinfo
+      else
+	  "unsupported"
+      end
+  end
+end
+
+Facter.add("non_global_zone") do
+  confine :operatingsystem => :Solaris
+  setcode do
+      virtinfo = %x{/sbin/virtinfo list -H -o class non-global-zone 2>/dev/null}
+      case virtinfo.chomp!
+      when "supported", "current"
+          virtinfo
+      else
+          "unsupported"
+      end 
+  end 
+end
+
--- a/components/puppet/Makefile	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/Makefile	Fri Jan 31 14:12:10 2014 -0700
@@ -18,17 +18,17 @@
 #
 # CDDL HEADER END
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 include ../../make-rules/shared-macros.mk
 
 COMPONENT_NAME=		puppet
-COMPONENT_VERSION=	3.2.4
+COMPONENT_VERSION=	3.4.1
 COMPONENT_PROJECT_URL=	http://puppetlabs.com/
 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
 COMPONENT_ARCHIVE_HASH=	\
-    sha256:8b38f4adee6237b8dd7b1956d90af97f2d0091245d6e30b708bbc8e333001358
+    sha256:e6a929699a83c2bc1d1661674172ba7e92b6fb4235fa594cc2f3219925504b93
 COMPONENT_ARCHIVE_URL=	$(COMPONENT_PROJECT_URL)downloads/puppet/$(COMPONENT_ARCHIVE)
 COMPONENT_BUGDB=	utility/puppet
 
@@ -45,6 +45,12 @@
 # set the bindir to /usr/sbin
 INSTALL_RB_BINDIR =	$(USRSBINDIR)
 
+ASLR_MODE = $(ASLR_NOT_APPLICABLE)
+
+# pass Ruby values onto the package manfiest
+PKG_MACROS +=	RUBY_VERSION=$(RUBY_VERSION)
+PKG_MACROS +=	RUBY_LIB_VERSION=$(RUBY_LIB_VERSION)
+
 # common targets
 build:		$(BUILD_64)
 	# Ruby extension for auditing
--- a/components/puppet/files/puppet.xml	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/files/puppet.xml	Fri Jan 31 14:12:10 2014 -0700
@@ -20,7 +20,7 @@
 
  CDDL HEADER END
 
- Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 
  NOTE:  This service manifest is not editable; its contents will
  be overwritten by package or patch operations, including
@@ -43,6 +43,23 @@
             <service_fmri value='svc:/system/filesystem/minimal' />
     </dependency>
 
+    <dependency
+        name='network'
+        grouping='require_all'
+        restart_on='error'
+        type='service'>
+            <service_fmri value='svc:/milestone/network' />
+    </dependency>
+
+    <dependency
+        name='identity'
+        grouping='require_all'
+        restart_on='error'
+        type='service'>
+            <service_fmri value='svc:/system/identity:node' />
+    </dependency>
+
+    <exec_method type='method' name='start' exec=':true' timeout_seconds='60' />
     <exec_method type='method' name='stop' exec=':kill' timeout_seconds='60' />
 
     <property_group name='general' type='framework'>
@@ -110,1212 +127,1344 @@
                     </loctext>
                 </common_name>
             </prop_pattern>
-                <prop_pattern name='agent_catalog_run_lockfile' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                             A lock file to indicate agent catalog run in progress
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='agent_disabled_lockfile' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                             A lock file to indicate disabled puppet agent
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='allow_duplicate_certs' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to allowing duplication of existing certificates
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='allow_variables_with_dashes' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Permit hyphens in variable name. Always set it to False
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='archive_file_server' type='host'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Allow archiving files on file bucket server
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='archive_files' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Permit to archive files whose contents are audited
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='async_storeconfigs' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Permit queueing system to provide asynchronous database integration
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='autoflush' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether log files should always flush to disk
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='autosign' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to enable autosign
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='bindaddress' type='net_address'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The address a listening server should bind to
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='bucketdir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where FileBucket files are stored
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ca' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether the master should function as a certificate authority
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ca_name' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The name to use the Certificate Authority certificate
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ca_port' type='integer'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The port to use for the certificate authority
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ca_server' type='host'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Server to use for certificate authority requests
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ca_ttl' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The default TTL for new cetificates
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='cacert' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The CA certificate
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='cacrl' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The certificate revocation list for the CA
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='cadir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The root directory for the certificate authority
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='cakey' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The CA private key
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='capass' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The CA stores the password for the private key
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='caprivatedir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The CA stores private certificate information
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='capub' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The CA public key
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='catalog_cache_terminus' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Storing cached catalogs and valid values are json and yaml
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='catalog_format' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            What format to use to dump the catalog
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='catalog_terminus' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Location to access node catalogs
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='cert_inventory' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            A complete listing of all certificates
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='certdir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The certificate directory
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='certificate_expire_warning' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The window of time leading up to a certificate's expiration
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='certificate_revocation' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                             Whether Certificate revocation should be supported
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='certname' type='hostname'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The FQDN use to handle certificates
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='classfile' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The file in which agent stores a list of classes associated with the retrieved configuration
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='client_datadir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The directory in which serialized data is stored on the client
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='clientbucketdir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where FileBucket files are stores locally
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='clientyamldir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The directory in which client-side YAML data is stored
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='code' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Code to parse directly and only used by puppet
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='color' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Set colors when logging to the console
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='confdir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The main Puppet configuration directory
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='config' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The configuration file for the current puppet application
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='config_file_name' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The name of the puppet config file
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='config_version' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Process to determine configuration version
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='configprint' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Print the value of a specific configuration setting
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='configtimeout' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Duration for which client should wait for the configuration to retrived
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='couchdb_url' type='uri'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The url where the puppet couchdb database will be created
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='csrdir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where the CA stores certificate requests
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='deamonize' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Send the process into the background
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='data_binding_terminus' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where to retrive information about data
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='dbadapter' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The type of database to use
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='dbconnections' type='integer'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The number of database connections for networked databases
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='dblocation' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The database cache for client configurations
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='dbmigrate' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to automatically migrate the database
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='dbname' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The name of the database to use
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='dbpassword' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The database password for caching
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='dbport' type='integer'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The database port for caching
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='dbserver' type='host'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The database server for caching
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='dbsocket' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The database socket location
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='dbuser' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The database user for caching
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='default_file_terminus' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The default source for files if no server is given in a uri
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='deviceconfig' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Path to the device config file for puppet device
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='devicedir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The root directory of devices
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='diff' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The command diff to see difference between files
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='diff_args' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Arguments to pass to the diff command
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='dns_alt_names' type='host'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The list of alternative DNS names to use for the local host
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='document_all' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Document all resources
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='dynamicfacts' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Facts that are dynamic
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='environment' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The environment puppet is running in
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='evaltrace' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                           Whether each resource should log when it is being evaluated
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='external_nodes' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            An external command that can produce node information
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='factpath' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where Puppet should look for facts
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='facts_terminus' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The node facts terminus
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='fileserverconfig' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where the fileserver configuration is stored
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='filetimeout' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The minimum time to wait between checking for updates in configuration files
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='freeze_main' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Freezes the main class, disallowing any code to be added to it
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='genconfig' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to just print a configuration to stdout and exit
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='genmanifest' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to just print a manifest to stdout and exit
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='graph' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to create dot graph files for different configuration graphs
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='graphdir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Location to store dot-outputted graphs
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='group' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The group puppet master should run as
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='hiera_config' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The hiera configuration file
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='hostcert' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where individual hosts store and look for their certificates
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='hostcrl' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where the host's certificate revocation list can be found
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='hostcsr' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where individual hosts store and look for their certificate requests
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='hostprivkey' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where individual hosts store and look for their private key
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='hostpubkey' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where individual hosts store and look for their public key
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='http_compression' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Allow http compression in REST communication with the master
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='http_proxy_host' type='host'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The HTTP proxy host to use for outgoing connections
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='http_proxy_port' type='integer'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The HTTP proxy port to use for outgoing connections
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='httplog' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where the puppet agent web server logs
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ignorecache' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Ignore cache and always recomplie the configuration
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ignoreimport' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Allows the parser to continue without requiring all files referenced with import statements to exist
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ignoreschedules' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether puppet agent should ignore schedules
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='inventory_port' type='integer'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The server which send facts
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='inventory_server' type='host'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The server which send facts
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='inventory_terminus' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Should usually be the same as the facts terminus
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='keylength' type='integer'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The bit length of keys
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='lastrunfile' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Location where puppet agent stores the last run report summary
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='lastrunreport' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Location where puppet agent stores the last run report
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ldapattrs' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The LDAP attributes to include when querying LDAP for nodes
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ldapbase' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The search base for LDAP searches
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ldapclassattrs' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The LDAP attributes to use to define Puppet classes
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ldapparentattr' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The attribute to use to define the parent node
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ldappassword' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The password to use to connect to LDAP
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ldapport' type='integer'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The LDAP port
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ldapserver' type='host'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The LDAP server
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ldapssl' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Set SSL to be used when searching for nodes
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ldapstackedattrs' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Stacked LDAP attributes in a tree
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ldapstring' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The search string used to find an LDAP node
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ldaptls' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether TLS should be used when searching for nodes
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ldapuser' type='hostname'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The user to use to connect to LDAP
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='libdir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            An extra search for puppet
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='listen' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether puppet agent should listen for connections
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='localcacert' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where each client stores the CA certificate
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='localconfig' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where each client stores the CA certificate
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='logdir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The directory in which to store log files
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='manage_internal_files_permissions' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether puppet should manager the owner, group and mode of files it uses internally
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='manifest' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The entry-point manifest for puppet master
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='manifestdir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where puppet master look for its manifests
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='masterhttplog' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where puppet master web server logs
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='masterlog' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where puppet master logs
-                        </loctext> </description>
-                </prop_pattern>
-               <prop_pattern name='masterport' type='integer'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Which port puppet master listens on
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='maximum_uid' type='integer'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The maximum allowed UID
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='mkusers' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to create the necessary user and group that puppet agent will run as
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='module_repository' type='uri'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The module repository
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='module_working_dir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The directory into which module tool data is stored
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='modulepath' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The search path for modules, as a list of directories
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='name' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The name of the application, if we are running as one
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='node_cache_terminus' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            How to store cached nodes
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='node_name' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Puppet master determines the client's identity
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='node_name_fact' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The fact name used to determine the node name
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='node_name_value' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The explicit value used for the node name
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='node_terminus' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where to find information about nodes
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='noop' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether puppet agent should be run in noop mode
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='onetime' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Run the configuration once
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='passfile' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where puppet agent stores the password for its private key
-                        </loctext> </description>
-                </prop_pattern>
-        <prop_pattern name='path' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The shell search path
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='pidfile' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The file containing the PID of a running process
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='plugindest' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where puppet should store plugins that it pulls down from the central server
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='pluginsignore' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            What files to ignore when pulling down plugins
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='pluginsource' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Location to retrieve plugins
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='pluginsync' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether plugins should be synced with the central server
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='postrun_command' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            A command to run after every agent run
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='preferred_serialization_format' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The preferred means of serializing ruby instances
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='prerun_command' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            A command to run before every agrent run
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='privatedir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where the client stores private certificate information
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='privatekeydir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The private key directory
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='publickeydir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The public key directory
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='puppetdlog' type='integer'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Which port puppet agent listens on
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='queue_source' type='uri'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Which type of queue to use for asynchronous processing
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='queue_type' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Which type of queue to use for asynchronous procesing
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='rails_loglevel' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The log level for Rails connections
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='railslog' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where Rails-specific logs are sent
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='report' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to send reports after every transaction
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='report_port' type='integer'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The port to communicate with the report_server
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='report_server' type='host'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The server to send transcation reports to
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='reportdir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The directory in which to store reports received from the client
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='reportfrom' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The 'from' email address for the reports
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='reports' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The list of reports to generate
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='reporturl' type='uri'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The URL used by the http reports processor to send reports
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='req_bits' type='integer'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The bit length of the certificates
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='requestdir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where host certificate requests are stored
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='resourcefile' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The file in which puppet agent stores a list of the resources associated with the retrieved configuration
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='rest_authconfig' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The configuration file that defines the rights to the different rest indirections
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='route_file' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The YAML file containing indirector route configuration
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='rrddir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The directory where RRD database files are stored
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='rrdinterval' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Duration of how often RRD should expect data
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='rundir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where PuppetPID files are kept
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='runinterval' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Duration of how often puppet agent applies the client configuraiton
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='sendmail' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where to find the sendmail binary with which to send email
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='serial' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where the serial number for certificates is stored
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='server_datadir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The directory in which serialized data is stored
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='show_diff' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to log and report a contextual diff when files are being replaced
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='signeddir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where the CA stores signed certificates
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='smtpserver' type='host'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The server through which to send email reports
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='splay' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to sleep for a pseudo-random amount of time before a run
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='splaylimit' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The maximum time to delay before runs
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='srv_domain' type='host'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The domain which will be queried to find the SRV records of servers to use
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ssl_client_ca_auth' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Certificate authorities who issue server certificates
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ssl_client_header' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The header containing an authenticated client's SSL DN
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ssl_client_verify_header' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The header containing the status message of the client verification
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ssl_server_ca_auth' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Certificate authorities who issue client certificates
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='ssldir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where SSL ceritifcates are kept
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='statedir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The directory where Puppet state is stored
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='statefile' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where puppet agent and master store state associates with the running configuration
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='storeconfigs' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to store each client's configuration
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='storeconfigs_backend' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Configure the backend terminus used for StoreConfigs
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='strict_hostname_checking' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to only search for the complete hostname
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='summarize' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to print a transaction summary
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='syslogfacility' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            What syslog facility to use when logging to syslog
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='tagmap' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The mapping between reporting tags and email addresses
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='tags' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Tags to use to find resources
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='templatedir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where Puppet looks for template files
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='thin_storeconfigs' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether Puppet should store only facts and exported resources in the storeconfigs database
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='trace' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to print stacks traces on some errors
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='use_cached_catalog' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to only use the catalog rather than compiling a new catalog on every run
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='use_srv_records' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether the server will search for SRV records in DNS for the curent domain
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='usecacheonfailure' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to use the cached configuration when the remote configuration will not compile
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='user' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The user puppet master should run as
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='vardir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Where Puppet stores dynamic and growing data
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='waitforcert' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The time interval 'puppet agent' should connect to the server and ask it to sign a certificate request
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='yamldir' type='astring'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            The directory in which YAML data is stored, usually in a subdirectory
-                        </loctext> </description>
-                </prop_pattern>
-                <prop_pattern name='zlib' type='boolean'
-                    required='false'>
-                        <description> <loctext xml:lang='C'>
-                            Whether to use the zib library
-                        </loctext> </description>
-                </prop_pattern>
+            <prop_pattern name='agent_catalog_run_lockfile' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                         A lock file to indicate agent catalog run in progress
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='agent_disabled_lockfile' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                         A lock file to indicate disabled puppet agent
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='allow_duplicate_certs' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to allowing duplication of existing certificates
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='allow_variables_with_dashes' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Permit hyphens in variable name. Always set it to False
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='archive_file_server' type='host'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Allow archiving files on file bucket server
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='archive_files' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Permit to archive files whose contents are audited
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='async_storeconfigs' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Permit queueing system to provide asynchronous database integration
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='autoflush' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether log files should always flush to disk
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='autosign' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to enable autosign
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='bindaddress' type='net_address'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The address a listening server should bind to
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='binder' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Turns the binding system on or off.
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='binder_config' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The binder configuration file.
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='bucketdir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where FileBucket files are stored
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ca' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether the master should function as a certificate authority
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ca_name' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The name to use the Certificate Authority certificate
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ca_port' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The port to use for the certificate authority
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ca_server' type='host'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Server to use for certificate authority requests
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ca_ttl' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The default TTL for new cetificates
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='cacert' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The CA certificate
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='cacrl' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The certificate revocation list for the CA
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='cadir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The root directory for the certificate authority
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='cakey' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The CA private key
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='capass' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The CA stores the password for the private key
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='caprivatedir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The CA stores private certificate information
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='capub' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The CA public key
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='catalog_cache_terminus' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Storing cached catalogs and valid values are json and yaml
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='catalog_format' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        What format to use to dump the catalog
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='catalog_terminus' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Location to access node catalogs
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='cert_inventory' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        A complete listing of all certificates
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='certdir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The certificate directory
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='certificate_expire_warning' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The window of time leading up to a certificate's expiration
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='certificate_revocation' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                         Whether Certificate revocation should be supported
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='certname' type='hostname'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The FQDN use to handle certificates
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='classfile' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The file in which agent stores a list of classes associated with the retrieved configuration
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='client_datadir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The directory in which serialized data is stored on the client
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='clientbucketdir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where FileBucket files are stores locally
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='clientyamldir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The directory in which client-side YAML data is stored
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='code' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Code to parse directly and only used by puppet
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='color' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Set colors when logging to the console
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='confdir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The main Puppet configuration directory
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='config' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The configuration file for the current puppet application
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='config_file_name' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The name of the puppet config file
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='config_version' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Process to determine configuration version
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='configprint' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Print the value of a specific configuration setting
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='configtimeout' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Duration for which client should wait for the configuration to retrived
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='couchdb_url' type='uri'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The url where the puppet couchdb database will be created
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='csr_attributes' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        An optional file containing custom attributes to add to certificate signing requests (CSRs).
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='csrdir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where the CA stores certificate requests
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='daemonize' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Send the process into the background
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='data_binding_terminus' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where to retrive information about data
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='dbadapter' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The type of database to use
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='dbconnections' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The number of database connections for networked databases
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='dblocation' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The database cache for client configurations
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='dbmigrate' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to automatically migrate the database
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='dbname' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The name of the database to use
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='dbpassword' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The database password for caching
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='dbport' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The database port for caching
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='dbserver' type='host'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The database server for caching
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='dbsocket' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The database socket location
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='dbuser' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The database user for caching
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='default_file_terminus' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The default source for files if no server is given in a uri
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='default_schedules' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to generate the default schedule resources
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='deviceconfig' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Path to the device config file for puppet device
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='devicedir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The root directory of devices
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='diff' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The command diff to see difference between files
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='diff_args' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Arguments to pass to the diff command
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='dns_alt_names' type='host'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The list of alternative DNS names to use for the local host
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='document_all' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Document all resources
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='dynamicfacts' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Facts that are dynamic
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='environment' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The environment puppet is running in
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='evaltrace' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                       Whether each resource should log when it is being evaluated
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='external_nodes' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        An external command that can produce node information
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='factpath' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where Puppet should look for facts
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='facts_terminus' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The node facts terminus
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='fileserverconfig' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where the fileserver configuration is stored
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='filetimeout' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The minimum time to wait between checking for updates in configuration files
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='freeze_main' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Freezes the main class, disallowing any code to be added to it
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='genconfig' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to just print a configuration to stdout and exit
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='genmanifest' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to just print a manifest to stdout and exit
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='graph' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to create dot graph files for different configuration graphs
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='graphdir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Location to store dot-outputted graphs
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='group' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The group puppet master should run as
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='hiera_config' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The hiera configuration file
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='hostcert' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where individual hosts store and look for their certificates
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='hostcrl' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where the host's certificate revocation list can be found
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='hostcsr' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where individual hosts store and look for their certificate requests
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='hostprivkey' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where individual hosts store and look for their private key
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='hostpubkey' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where individual hosts store and look for their public key
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='http_compression' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Allow http compression in REST communication with the master
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='http_proxy_host' type='host'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The HTTP proxy host to use for outgoing connections
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='http_proxy_port' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The HTTP proxy port to use for outgoing connections
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='httplog' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where the puppet agent web server logs
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ignorecache' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Ignore cache and always recomplie the configuration
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ignoreimport' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Allows the parser to continue without requiring all files referenced with import statements to exist
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ignoreissingtypes' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Skip searching for classes and definitions that were missing during a prior compilation.
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ignoreschedules' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether puppet agent should ignore schedules
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='inventory_port' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The server which send facts
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='inventory_server' type='host'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The server which send facts
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='inventory_terminus' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Should usually be the same as the facts terminus
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='keylength' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The bit length of keys
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='lastrunfile' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Location where puppet agent stores the last run report summary
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='lastrunreport' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Location where puppet agent stores the last run report
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ldapattrs' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The LDAP attributes to include when querying LDAP for nodes
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ldapbase' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The search base for LDAP searches
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ldapclassattrs' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The LDAP attributes to use to define Puppet classes
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ldapparentattr' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The attribute to use to define the parent node
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ldappassword' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The password to use to connect to LDAP
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ldapport' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The LDAP port
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ldapserver' type='host'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The LDAP server
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ldapssl' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Set SSL to be used when searching for nodes
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ldapstackedattrs' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Stacked LDAP attributes in a tree
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ldapstring' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The search string used to find an LDAP node
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ldaptls' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether TLS should be used when searching for nodes
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ldapuser' type='hostname'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The user to use to connect to LDAP
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='legacy_query_parameter_serialization'
+                type='hostname' required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The serialization format to use when sending file_metadata query parameters.
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='libdir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        An extra search for puppet
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='listen' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether puppet agent should listen for connections
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='localcacert' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where each client stores the CA certificate
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='localconfig' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where each client stores the CA certificate
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='logdir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The directory in which to store log files
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='manage_internal_file_permissions' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether puppet should manager the owner, group and mode of files it uses internally
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='manifest' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The entry-point manifest for puppet master
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='manifestdir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where puppet master look for its manifests
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='masterhttplog' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where puppet master web server logs
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='masterlog' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where puppet master logs
+                    </loctext> </description>
+            </prop_pattern>
+           <prop_pattern name='masterport' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Which port puppet master listens on
+                    </loctext> </description>
+            </prop_pattern>
+           <prop_pattern name='max_deprecations' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The max number of logged/displayed parser validation deprecation warnings in case multiple errors have been detected.
+                    </loctext> </description>
+            </prop_pattern>
+           <prop_pattern name='max_errors' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The max number of logged/displayed parser validation errors in case multiple errors have been detected.
+                    </loctext> </description>
+            </prop_pattern>
+           <prop_pattern name='max_warnings' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The max number of logged/displayed parser validation warnings in case multiple errors have been detected.
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='maximum_uid' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The maximum allowed UID
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='mkusers' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to create the necessary user and group that puppet agent will run as
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='module_repository' type='uri'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The module repository
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='module_skeleton_dir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The directory which the skeleton for module tool generate is stored.
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='module_working_dir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The directory into which module tool data is stored
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='modulepath' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The search path for modules, as a list of directories
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='name' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The name of the application, if we are running as one
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='node_cache_terminus' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        How to store cached nodes
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='node_name' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Puppet master determines the client's identity
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='node_name_fact' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The fact name used to determine the node name
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='node_name_value' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The explicit value used for the node name
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='node_terminus' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where to find information about nodes
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='noop' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether puppet agent should be run in noop mode
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='onetime' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Run the configuration once
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ordering' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        How unrelated resources should be ordered when applying a catalog.
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='parser' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Selects the parser to use for parsing puppet manifests (in puppet DSL language/'.pp' files).
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='passfile' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where puppet agent stores the password for its private key
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='path' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The shell search path
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='pidfile' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The file containing the PID of a running process
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='plugindest' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where puppet should store plugins that it pulls down from the central server
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='pluginfactdest' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where Puppet should store external facts that are being handled by pluginsync
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='pluginfactsource' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where to retrieve external facts for pluginsync
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='pluginsignore' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        What files to ignore when pulling down plugins
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='pluginsource' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Location to retrieve plugins
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='pluginsync' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether plugins should be synced with the central server
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='postrun_command' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        A command to run after every agent run
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='preferred_serialization_format' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The preferred means of serializing ruby instances
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='prerun_command' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        A command to run before every agrent run
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='priority' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The scheduling priority of the process
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='privatedir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where the client stores private certificate information
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='privatekeydir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The private key directory
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='profile' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to enable experimental performance profiling
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='publickeydir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The public key directory
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='puppetdlog' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The log file for puppet agent
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='puppetport' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Which port puppet agent listens on
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='queue_source' type='uri'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Which type of queue to use for asynchronous processing
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='queue_type' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Which type of queue to use for asynchronous procesing
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='rails_loglevel' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The log level for Rails connections
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='railslog' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where Rails-specific logs are sent
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='report' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to send reports after every transaction
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='report_port' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The port to communicate with the report_server
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='report_serialization_format' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The serialization format to use when sending reports to the report_server
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='report_server' type='host'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The server to send transcation reports to
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='reportdir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The directory in which to store reports received from the client
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='reportfrom' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The 'from' email address for the reports
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='reports' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The list of reports to generate
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='reporturl' type='uri'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The URL used by the http reports processor to send reports
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='req_bits' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The bit length of the certificates
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='requestdir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where host certificate requests are stored
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='resourcefile' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The file in which puppet agent stores a list of the resources associated with the retrieved configuration
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='rest_authconfig' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The configuration file that defines the rights to the different rest indirections
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='route_file' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The YAML file containing indirector route configuration
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='rrddir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The directory where RRD database files are stored
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='rrdinterval' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Duration of how often RRD should expect data
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='rundir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where PuppetPID files are kept
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='runinterval' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Duration of how often puppet agent applies the client configuraiton
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='sendmail' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where to find the sendmail binary with which to send email
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='serial' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where the serial number for certificates is stored
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='server_datadir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The directory in which serialized data is stored
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='show_diff' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to log and report a contextual diff when files are being replaced
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='signeddir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where the CA stores signed certificates
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='smtphelo' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The name by which we identify ourselves in SMTP HELO for reports
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='smtpport' type='integer'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The TCP port through which to send email reports.
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='smtpserver' type='host'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The server through which to send email reports
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='splay' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to sleep for a pseudo-random amount of time before a run
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='splaylimit' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The maximum time to delay before runs
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='srv_domain' type='host'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The domain which will be queried to find the SRV records of servers to use
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ssl_client_ca_auth' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Certificate authorities who issue server certificates
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ssl_client_header' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The header containing an authenticated client's SSL DN
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ssl_client_verify_header' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The header containing the status message of the client verification
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ssl_server_ca_auth' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Certificate authorities who issue client certificates
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='ssldir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where SSL ceritifcates are kept
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='statedir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The directory where Puppet state is stored
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='statefile' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where puppet agent and master store state associates with the running configuration
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='storeconfigs' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to store each client's configuration
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='storeconfigs_backend' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Configure the backend terminus used for StoreConfigs
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='strict_hostname_checking' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to only search for the complete hostname
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='stringify_facts' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Flatten fact values to strings using #to_s
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='summarize' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to print a transaction summary
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='syslogfacility' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        What syslog facility to use when logging to syslog
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='tagmap' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The mapping between reporting tags and email addresses
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='tags' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Tags to use to find resources
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='templatedir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where Puppet looks for template files
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='thin_storeconfigs' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether Puppet should store only facts and exported resources in the storeconfigs database
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='trace' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to print stacks traces on some errors
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='trusted_node_data' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Stores trusted node data in a hash called $trusted
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='use_cached_catalog' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to only use the catalog rather than compiling a new catalog on every run
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='use_srv_records' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether the server will search for SRV records in DNS for the curent domain
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='usecacheonfailure' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to use the cached configuration when the remote configuration will not compile
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='user' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The user puppet master should run as
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='vardir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Where Puppet stores dynamic and growing data
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='waitforcert' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The time interval 'puppet agent' should connect to the server and ask it to sign a certificate request
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='yamldir' type='astring'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        The directory in which YAML data is stored, usually in a subdirectory
+                    </loctext> </description>
+            </prop_pattern>
+            <prop_pattern name='zlib' type='boolean'
+                required='false'>
+                    <description> <loctext xml:lang='C'>
+                        Whether to use the zib library
+                    </loctext> </description>
+            </prop_pattern>
         </pg_pattern>
     </template>
 </service>
--- a/components/puppet/files/solaris/lib/puppet/provider/boot_environment/solaris.rb	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/files/solaris/lib/puppet/provider/boot_environment/solaris.rb	Fri Jan 31 14:12:10 2014 -0700
@@ -20,7 +20,7 @@
 #
 
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 
 Puppet::Type.type(:boot_environment).provide(:boot_environment) do
@@ -104,7 +104,7 @@
 
         if zp = @resource[:zpool]
             found = false
-            for line in zpool(:list, "-o", "name", "-H") do
+            for line in zpool(:list, "-o", "name", "-H").each_line do
                 if zp == line.strip
                     found = true
                     flags << "-p" << zp
--- a/components/puppet/files/solaris/lib/puppet/provider/dns/solaris.rb	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/files/solaris/lib/puppet/provider/dns/solaris.rb	Fri Jan 31 14:12:10 2014 -0700
@@ -20,7 +20,7 @@
 #
 
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 
 Puppet::Type.type(:dns).provide(:dns) do
@@ -29,12 +29,11 @@
     defaultfor :osfamily => :solaris, :kernelrelease => ['5.11', '5.12']
     commands :svccfg => '/usr/sbin/svccfg', :svcprop => '/usr/bin/svcprop'
 
-    class << self; attr_accessor :dns_fmri end
-    @@dns_fmri = "svc:/network/dns/client"
+    Dns_fmri = "svc:/network/dns/client"
 
     def self.instances
         props = {}
-        svcprop("-p", "config", @@dns_fmri).split("\n").each do |line|
+        svcprop("-p", "config", Dns_fmri).split("\n").each do |line|
             fullprop, type, value = line.split(" ", 2)
             pg, prop = fullprop.split("/")
             props[prop] = value \
@@ -48,7 +47,7 @@
     Puppet::Type.type(:dns).validproperties.each do |field|
         define_method(field) do
             begin
-                svcprop("-p", "config/" + field.to_s, @@dns_fmri).strip()
+                svcprop("-p", "config/" + field.to_s, Dns_fmri).strip()
             rescue
                 # if the property isn't set, don't raise an error
                 nil
@@ -58,18 +57,27 @@
         define_method(field.to_s + "=") do |should|
             begin
                 if should.is_a? Array
-                    # the first entry needs the open paren and the last entry
-                    # needs the close paren
-                    should[0] = "(" + should[0]
-                    should[-1] = should[-1] + ")"
-
-                    svccfg("-s", @@dns_fmri, "setprop",
-                           "config/" + field.to_s, "=", should)
+                    # in Solaris 11, the list of values needs to be single
+                    # argument to svccfg.
+                    values = ""
+                    for entry in should
+                        values += "\"#{entry}\" "
+                    end
+                    values = "(" + values + ")"
+                    svccfg("-s", Dns_fmri, "setprop",
+                           "config/" + field.to_s, "=", values)
                 else
-                    svccfg("-s", @@dns_fmri, "setprop",
-                           "config/" + field.to_s, "=", '"' + should + '"')
+                    # Puppet seems to get confused about when to pass an empty
+                    # string or "\"\"".  Catch either condition to handle
+                    # passing values to SMF correctly
+                    if should.to_s.empty? or should.to_s == '""'
+                        value = should.to_s
+                    else
+                        value = "\"" + should.to_s + "\""
+                    end
+                    svccfg("-s", Dns_fmri, "setprop",
+                           "config/" + field.to_s, "=", value)
                 end
-                svccfg("-s", @@dns_fmri, "refresh")
             rescue => detail
                 raise Puppet::Error,
                     "Unable to set #{field.to_s} to #{should.inspect}\n"
@@ -77,4 +85,8 @@
             end
         end
     end
+
+    def flush
+        svccfg("-s", Dns_fmri, "refresh")
+    end
 end
--- a/components/puppet/files/solaris/lib/puppet/provider/ipmp_interface/solaris.rb	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/files/solaris/lib/puppet/provider/ipmp_interface/solaris.rb	Fri Jan 31 14:12:10 2014 -0700
@@ -20,7 +20,7 @@
 #
 
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 
 Puppet::Type.type(:ipmp_interface).provide(:ipmp_interface) do
@@ -31,8 +31,7 @@
 
     def self.instances
         ifaces = []
-        ipadm("show-if", "-p", "-o", "IFNAME,CLASS,OVER").split(
-              "\n").each do |line|
+        ipadm("show-if", "-p", "-o", "IFNAME,CLASS,OVER").each_line do |line|
             name, linkclass, over = line.strip().split(":", 3)
             next if linkclass != "ipmp"
             ifaces << new(:name => name.strip(),
@@ -100,7 +99,7 @@
     end
 
     def destroy
-        for iface in self.interfaces do
+        for iface in self.interfaces.each_line do
             ipadm("remove-ipmp", "-i", iface, @resource[:name])
         end
         ipadm('delete-ipmp', @resource[:name])
--- a/components/puppet/files/solaris/lib/puppet/provider/ldap/solaris.rb	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/files/solaris/lib/puppet/provider/ldap/solaris.rb	Fri Jan 31 14:12:10 2014 -0700
@@ -20,7 +20,7 @@
 #
 
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 
 Puppet::Type.type(:ldap).provide(:ldap) do
@@ -29,8 +29,12 @@
     defaultfor :osfamily => :solaris, :kernelrelease => ['5.11', '5.12']
     commands :svccfg => '/usr/sbin/svccfg', :svcprop => '/usr/bin/svcprop'
 
-    class << self; attr_accessor :ldap_fmri end
-    @@ldap_fmri = "svc:/network/ldap/client"
+    Ldap_fmri = "svc:/network/ldap/client"
+
+    def initialize(resource)
+        super
+        @refresh_needed = false
+    end
 
     def self.instances
         if Process.euid != 0
@@ -39,7 +43,7 @@
         props = {}
         validprops = Puppet::Type.type(:ldap).validproperties
 
-        svcprop("-p", "config", @@ldap_fmri).split("\n").collect do |line|
+        svcprop("-p", "config", Ldap_fmri).each_line.collect do |line|
             data = line.split()
             fullprop = data[0]
             type = data[1]
@@ -50,16 +54,15 @@
             end
 
             pg, prop = fullprop.split("/")
+            props[prop] = value if validprops.include? prop.to_sym
+        end
+        begin
+            props[:bind_passwd] = svcprop("-p", "cred/bind_passwd",
+                                          "svc:/network/ldap/client").strip
+        rescue
+        end
 
-            # handle the domainname differently as it's not in validprops
-            if prop == "profile"
-                props[:name] = value
-            else
-                props[prop] = value if validprops.include? prop.to_sym
-            end
-        end
-        props[:bind_passwd] = svcprop("-p", "cred/bind_passwd",
-                                      "svc:/network/ldap/client").strip
+        props[:name] = "current"
         return Array new(props)
     end
 
@@ -68,7 +71,7 @@
         pg = Puppet::Type.type(:ldap).propertybyname(field).pg
         define_method(field) do
             begin
-                svcprop("-p", pg + "/" + field.to_s, @@ldap_fmri).strip()
+                svcprop("-p", pg + "/" + field.to_s, Ldap_fmri).strip()
             rescue
                 # if the property isn't set, don't raise an error
                 nil
@@ -80,24 +83,39 @@
                 if should.is_a? Array
                     should.collect! { |value| value.to_s }
 
-                    # the first entry needs the open paren and the last entry
-                    # needs the close paren
-                    should[0] = "(" + should[0]
-                    should[-1] = should[-1] + ")"
-
-                    svccfg("-s", @@ldap_fmri, "setprop",
-                           pg + "/" + field.to_s, "=", should)
+                    # in Solaris 11, the list of values needs to be single
+                    # argument to svccfg.
+                    values = ""
+                    for entry in should
+                        values += "\"#{entry}\" "
+                    end
+                    values = "(" + values + ")"
+                    svccfg("-s", Ldap_fmri, "setprop",
+                           pg + "/" + field.to_s, "=", values)
                 else
-                    svccfg("-s", @@ldap_fmri, "setprop",
-                           pg + "/" + field.to_s, "=", should.to_s)
+                    # Puppet seems to get confused about when to pass an empty
+                    # string or "\"\"".  Catch either condition to handle
+                    # passing values to SMF correctly
+                    if should.to_s.empty? or should.to_s == '""'
+                        value = should.to_s
+                    else
+                        value = "\"" + should.to_s + "\""
+                    end
+                    svccfg("-s", Ldap_fmri, "setprop",
+                           pg + "/" + field.to_s, "=", value)
                 end
-                svccfg("-s", @@ldap_fmri, "refresh")
+                @refresh_needed = true
             rescue => detail
                 raise Puppet::Error,
                     "Unable to set #{field.to_s} to #{should.inspect}\n"
                     "#{detail}\n"
             end
         end
+    end
 
+    def flush
+        if @refresh_needed == true
+            svccfg("-s", Ldap_fmri, "refresh")
+        end
     end
 end
--- a/components/puppet/files/solaris/lib/puppet/provider/nis/solaris.rb	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/files/solaris/lib/puppet/provider/nis/solaris.rb	Fri Jan 31 14:12:10 2014 -0700
@@ -20,7 +20,7 @@
 #
 
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 
 Puppet::Type.type(:nis).provide(:nis) do
@@ -30,14 +30,20 @@
     commands :svccfg => '/usr/sbin/svccfg', :svcprop => '/usr/bin/svcprop'
 
     class << self; attr_accessor :client_fmri, :domain_fmri end
-    @@client_fmri = "svc:/network/nis/client"
-    @@domain_fmri = "svc:/network/nis/domain"
+    Client_fmri = "svc:/network/nis/client"
+    Domain_fmri = "svc:/network/nis/domain"
+
+    def initialize(value={})
+        super(value)
+        @client_refresh = false
+        @domain_refresh = false
+    end
 
     def self.instances
         props = {}
         validprops = Puppet::Type.type(:nis).validproperties
 
-        [@@client_fmri, @@domain_fmri].each do |svc|
+        [Client_fmri, Domain_fmri].each do |svc|
             svcprop("-p", "config", svc).split("\n").collect do |line|
                 data = line.split()
                 fullprop = data[0]
@@ -49,15 +55,10 @@
                 end
 
                 pg, prop = fullprop.split("/")
-
-                # handle the domainname differently as it's not in validprops
-                if prop == "domainname"
-                    props[:name] = value
-                else
-                    props[prop] = value if validprops.include? prop.to_sym
-                end
+                props[prop] = value if validprops.include? prop.to_sym
             end
         end
+        props[:name] = "current"
         return Array new(props)
     end
 
@@ -65,7 +66,7 @@
     [:use_broadcast, :use_ypsetme].each do |field|
         define_method(field) do
             begin
-                svcprop("-p", "config/" + field.to_s, @@client_fmri).strip()
+                svcprop("-p", "config/" + field.to_s, Client_fmri).strip()
             rescue
                 # if the property isn't set, don't raise an error
                 nil
@@ -74,14 +75,19 @@
 
         define_method(field.to_s + "=") do |should|
             begin
-                svccfg("-s", @@client_fmri, "setprop", "config/" + field.to_s,
-                       "=", '"' + should.to_s + '"')
-                svccfg("-s", @@client_fmri, "refresh")
+                if not should.to_s.empty?
+                    value = "\"" + should.to_s + "\""
+                else
+                    value = should.to_s
+                end
+                svccfg("-s", Client_fmri, "setprop", "config/" + field.to_s,
+                       "=", value)
             rescue => detail
                 raise Puppet::Error,
                     "Unable to set #{field.to_s} to #{should.inspect}\n"
                     "#{detail}\n"
             end
+            @client_refresh = true
         end
     end
 
@@ -89,7 +95,7 @@
     [:domainname, :ypservers, :securenets].each do |field|
         define_method(field) do
             begin
-                svcprop("-p", "config/" + field.to_s, @@domain_fmri).strip()
+                svcprop("-p", "config/" + field.to_s, Domain_fmri).strip()
             rescue
                 # if the property isn't set, don't raise an error
                 nil
@@ -99,23 +105,42 @@
         define_method(field.to_s + "=") do |should|
             begin
                 if should.is_a? Array
-                    # the first entry needs the open paren and the last entry
-                    # needs the close paren
-                    should[0] = "(" + should[0]
-                    should[-1] = should[-1] + ")"
-
-                    svccfg("-s", @@domain_fmri, "setprop",
-                           "config/" + field.to_s, "=", should)
+                    # in Solaris 11, the list of values needs to be single
+                    # argument to svccfg.
+                    values = ""
+                    for entry in should
+                        values += "\"#{entry}\" "
+                    end
+                    values = "(" + values + ")"
+                    svccfg("-s", Domain_fmri, "setprop",
+                           "config/" + field.to_s, "=", values)
                 else
-                    svccfg("-s", @@domain_fmri, "setprop",
-                           "config/" + field.to_s, "=", '"' + should + '"')
+                    # Puppet seems to get confused about when to pass an empty
+                    # string or "\"\"".  Catch either condition to handle
+                    # passing values to SMF correctly
+                    if should.to_s.empty? or should.to_s == '""'
+                        value = should.to_s
+                    else
+                        value = "\"" + should.to_s + "\""
+                    end
+                    svccfg("-s", Domain_fmri, "setprop",
+                           "config/" + field.to_s, "=", value)
                 end
-                svccfg("-s", @@domain_fmri, "refresh")
             rescue => detail
                 raise Puppet::Error,
                     "Unable to set #{field.to_s} to #{should.inspect}\n"
                     "#{detail}\n"
             end
+            @domain_refresh = true
+        end
+    end
+
+    def flush
+        if @domain_refresh == true
+            svccfg("-s", Domain_fmri, "refresh")
+        end
+        if @client_refresh == true
+            svccfg("-s", Client_fmri, "refresh")
         end
     end
 end
--- a/components/puppet/files/solaris/lib/puppet/provider/nsswitch/solaris.rb	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/files/solaris/lib/puppet/provider/nsswitch/solaris.rb	Fri Jan 31 14:12:10 2014 -0700
@@ -20,7 +20,7 @@
 #
 
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 
 Puppet::Type.type(:nsswitch).provide(:nsswitch) do
@@ -29,12 +29,11 @@
     defaultfor :osfamily => :solaris, :kernelrelease => ['5.11', '5.12']
     commands :svccfg => '/usr/sbin/svccfg', :svcprop => '/usr/bin/svcprop'
 
-    class << self; attr_accessor :nsswitch_fmri end
-    @@nsswitch_fmri = "svc:/system/name-service/switch"
+    Nsswitch_fmri = "svc:/system/name-service/switch"
 
     def self.instances
         props = {}
-        svcprop("-p", "config", @@frmi).split("\n").collect do |line|
+        svcprop("-p", "config", Nsswitch_fmri).each_line.collect do |line|
             fullprop, type, value = line.split(" ", 2)
             pg, prop = fullprop.split("/")
             props[prop] = value \
@@ -49,7 +48,7 @@
         define_method(field) do
             begin
                 out = svcprop("-p", "config/" + field.to_s,
-                              @@nsswitch_fmri).strip()
+                              Nsswitch_fmri).strip()
                 out = out.delete("\\")
             rescue
                 # if the property isn't set, don't raise an error
@@ -59,9 +58,8 @@
 
         define_method(field.to_s + "=") do |should|
             begin
-                svccfg("-s", @@nsswitch_fmri, "setprop",
+                svccfg("-s", Nsswitch_fmri, "setprop",
                        "config/" + field.to_s, "=", '"' + should + '"')
-                svccfg("-s", @@nsswitch_fmri, "refresh")
             rescue => detail
                 raise Puppet::Error,
                     "Unable to set #{field.to_s} to #{should.inspect}\n"
@@ -69,4 +67,8 @@
             end
         end
     end
+
+    def flush
+        svccfg("-s", Nsswitch_fmri, "refresh")
+    end
 end
--- a/components/puppet/files/solaris/lib/puppet/provider/pkg_publisher/solaris.rb	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/files/solaris/lib/puppet/provider/pkg_publisher/solaris.rb	Fri Jan 31 14:12:10 2014 -0700
@@ -20,7 +20,7 @@
 #
 
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 
 Puppet::Type.type(:pkg_publisher).provide(:pkg_publisher) do
@@ -46,7 +46,7 @@
                 origin = origin[0..-2]
             end
 
-            if publishers.has_key?(name):
+            if publishers.has_key?(name)
                 # if we've seen this publisher before, simply update the origin
                 # array
                 publishers[name]["origin"] << origin
@@ -57,7 +57,7 @@
                 publishers[name]["proxy"] = proxy if proxy != "-"
 
                 index = publisher_order.index(name)
-                if index == 0:
+                if index == 0
                     publishers[name]["searchfirst"] = true
                     publishers[name]["searchafter"] = nil
                 else
--- a/components/puppet/files/solaris/lib/puppet/provider/vni_interface/solaris.rb	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/files/solaris/lib/puppet/provider/vni_interface/solaris.rb	Fri Jan 31 14:12:10 2014 -0700
@@ -20,7 +20,7 @@
 #
 
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 
 Puppet::Type.type(:vni_interface).provide(:vni_interface) do
@@ -51,7 +51,7 @@
     def exists?
         p = exec_cmd(command(:ipadm), "show-if", "-p", "-o", "IFNAME,CLASS",
                      @resource[:name])
-        if p[:exit] == 1:
+        if p[:exit] == 1
             return false
         end
 
--- a/components/puppet/files/solaris/lib/puppet/type/dns.rb	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/files/solaris/lib/puppet/type/dns.rb	Fri Jan 31 14:12:10 2014 -0700
@@ -20,7 +20,7 @@
 #
 
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 
 require 'ipaddr'
@@ -44,14 +44,20 @@
               3 IP addresses may be specified.  Specify multiple IP addresses
               as an array"
 
-        # ensure should remains an array
+        # ensure should remains an array as long as there's more than 1 entry
         def should
-            @should
+            if @should.length == 1
+                @should[0]
+            else
+                @should
+            end
         end
 
         def insync?(is)
             is = [] if is == :absent or is.nil?
-            is.sort == self.should.sort
+            if should.is_a? Array
+                is.sort == self.should.sort
+            end
         end
 
         # svcprop returns multivalue entries delimited with a space
@@ -78,14 +84,20 @@
               entries may be specified.  Specify multiple search entries as an
               array."
 
-        # ensure should remains an array
+        # ensure should remains an array as long as there's more than 1 entry
         def should
-            @should
+            if @should.length == 1
+                @should[0]
+            else
+                @should
+            end
         end
 
         def insync?(is)
             is = [] if is == :absent or is.nil?
-            is.sort == self.should.sort
+            if should.is_a? Array
+                is.sort == self.should.sort
+            end
         end
 
         # svcprop returns multivalue entries delimited with a space
@@ -99,14 +111,20 @@
               be specified in IP 'slash notation'.  A maximum of 10 sortlist
               entries may be specified.  Specify multiple entries as an array."
 
-        # ensure should remains an array
+        # ensure should remains an array as long as there's more than 1 entry
         def should
-            @should
+            if @should.length == 1
+                @should[0]
+            else
+                @should
+            end
         end
 
         def insync?(is)
             is = [] if is == :absent or is.nil?
-            is.sort == self.should.sort
+            if should.is_a? Array
+                is.sort == self.should.sort
+            end
         end
 
         # svcprop returns multivalue entries delimited with a space
@@ -129,14 +147,20 @@
               no-check-names, inet6.  For values with 'n', specify 'n' as an
               integer.  Specify multiple options as an array."
 
-        # ensure should remains an array
+        # ensure should remains an array as long as there's more than 1 entry
         def should
-            @should
+            if @should.length == 1
+                @should[0]
+            else
+                @should
+            end
         end
 
         def insync?(is)
             is = [] if is == :absent or is.nil?
-            is.sort == self.should.sort
+            if should.is_a? Array
+                is.sort == self.should.sort
+            end
         end
 
         # svcprop returns multivalue entries delimited with a space
@@ -150,9 +174,6 @@
                 raise Puppet::Error, "option #{value} is invalid" \
                     if not simple_opts.include? data[0]
             elsif data.length == 2
-                # XXX
-                raise Puppet::Error, "svccfg is bugged with prop:N options"
-
                 raise Puppet::Error, "option #{value} is invalid" \
                     if not arg_opts.include? data[0]
 
--- a/components/puppet/files/solaris/lib/puppet/type/ldap.rb	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/files/solaris/lib/puppet/type/ldap.rb	Fri Jan 31 14:12:10 2014 -0700
@@ -20,7 +20,7 @@
 #
 
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 
 require 'ipaddr'
@@ -48,8 +48,18 @@
     @doc = "Manage the configuration of the LDAP client for Oracle Solaris"
 
     newparam(:name) do
+        desc "The symbolic name for the LDAP client settings to use.  This name
+              is used for human reference only."
+        isnamevar
+    end
+
+    newproperty(:profile) do
         desc "The LDAP profile name"
-        isnamevar
+        class << self
+            attr_accessor :pg
+        end
+        self.pg = "config"
+        desc "The LDAP profile name"
     end
 
     newproperty(:server_list, :parent => Puppet::Property::List) do
@@ -65,7 +75,7 @@
         def should
             @should
         end
-
+        
         def insync?(is)
             is = [] if is == :absent or is.nil?
             is.sort == self.should.sort
@@ -94,7 +104,7 @@
         def should
             @should
         end
-
+        
         def insync?(is)
             is = [] if is == :absent or is.nil?
             is.sort == self.should.sort
@@ -144,7 +154,7 @@
         def should
             @should
         end
-
+        
         def insync?(is)
             is = [] if is == :absent or is.nil?
             is.sort == self.should.sort
@@ -218,7 +228,7 @@
         def should
             @should
         end
-
+        
         def insync?(is)
             is = [] if is == :absent or is.nil?
             is.sort == self.should.sort
@@ -244,7 +254,7 @@
         def should
             @should
         end
-
+        
         def insync?(is)
             is = [] if is == :absent or is.nil?
             is.sort == self.should.sort
@@ -280,7 +290,7 @@
         def should
             @should
         end
-
+        
         def insync?(is)
             is = [] if is == :absent or is.nil?
             is.sort == self.should.sort
@@ -305,7 +315,7 @@
         def should
             @should
         end
-
+        
         def insync?(is)
             is = [] if is == :absent or is.nil?
             is.sort == self.should.sort
@@ -335,7 +345,7 @@
         self.pg = "cred"
     end
 
-    newproperty(:admin_dn) do
+    newproperty(:admin_bind_dn) do
         desc "The Bind Distinguised Name for the administrator identity that
               is used for shadow information update"
         class << self
@@ -344,7 +354,7 @@
         self.pg = "cred"
     end
 
-    newproperty(:admin_password) do
+    newproperty(:admin_bind_passwd) do
         desc "The administrator password"
         class << self
             attr_accessor :pg
@@ -352,7 +362,7 @@
         self.pg = "cred"
     end
 
-    newproperty(:certificate_path) do
+    newproperty(:host_certpath) do
         desc "The location of the certificate files"
         class << self
             attr_accessor :pg
--- a/components/puppet/files/solaris/lib/puppet/type/nis.rb	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/files/solaris/lib/puppet/type/nis.rb	Fri Jan 31 14:12:10 2014 -0700
@@ -20,7 +20,7 @@
 #
 
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 
 require 'ipaddr'
@@ -38,23 +38,34 @@
 Puppet::Type.newtype(:nis) do
     @doc = "Manage the configuration of the NIS client for Oracle Solaris"
 
-    newparam(:domainname) do
+    newparam(:name) do
+       desc "The symbolic name for the NIS domain and client settings to use.
+              This name is used for human reference only."
+        isnamevar
+    end
+
+    newproperty(:domainname) do
         desc "The NIS domainname"
-        isnamevar
     end
 
     newproperty(:ypservers, :parent => Puppet::Property::List) do
         desc "The hosts or IP addresses to use as NIS servers.  Specify
               multiple entries as an array"
 
-        # ensure should remains an array
+        # ensure should remains an array as long as there's more than 1 entry
         def should
-            @should
+            if @should.length == 1
+                @should[0]
+            else
+                @should
+            end
         end
 
         def insync?(is)
             is = [] if is == :absent or is.nil?
-            is.sort == self.should.sort
+            if should.is_a? Array
+                is.sort == self.should.sort
+            end
         end
 
         # svcprop returns multivalue entries delimited with a space
@@ -73,46 +84,11 @@
         end
     end
 
-    newproperty(:securenets, :parent => Puppet::Property::List) do
-        desc "Entries for /var/yp/securenets.  Each entry must be a 2 element
-              array.  The first element must be either a host or a netmask.
+    newproperty(:securenets) do
+        desc "Entries for /var/yp/securenets.  Each entry must be a hash.
+              The first element in the hash is either a host or a netmask.
               The second element must be an IP network address.  Specify
-              multiple entires as an array of arrays"
-
-        # ensure should remains an array
-        def should
-            @should
-        end
-
-        def insync?(is)
-            is = [] if is == :absent or is.nil?
-            is.sort == self.should.sort
-        end
-
-        # svcprop returns multivalue entries delimited with a space
-        def delimiter
-            " "
-        end
-
-        validate do |value|
-            netmask, network = value
-            # check the netmask
-            begin
-                ip = IPAddr.new(netmask)
-            rescue ArgumentError
-                # the value wasn't a valid IP address, so check the hostname
-                raise Puppet::Error, "securenets entry:  #{value} has an
-                    invalid netmask" if not valid_hostname? netmask
-            end
-
-            begin
-                ip = IPAddr.net(network)
-            rescue ArgumentError
-                # the value wasn't a valid IP address
-                raise Puppet::Error, "securenets entry:  #{value} has an 
-                    invalid network"
-            end
-        end
+              multiple entires as separate entries in the hash."
     end
 
     newproperty(:use_broadcast) do
--- a/components/puppet/files/solaris/lib/puppet/type/nsswitch.rb	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/files/solaris/lib/puppet/type/nsswitch.rb	Fri Jan 31 14:12:10 2014 -0700
@@ -20,7 +20,7 @@
 #
 
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 
 Puppet::Type.newtype(:nsswitch) do
@@ -84,8 +84,8 @@
         desc "The alias database lookup override"
     end
 
-    newproperty(:servicde) do
-        desc "The servicde database lookup override"
+    newproperty(:service) do
+        desc "The service database lookup override"
     end
 
     newproperty(:project) do
--- a/components/puppet/patches/puppet-00-s12pkg.patch	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/patches/puppet-00-s12pkg.patch	Fri Jan 31 14:12:10 2014 -0700
@@ -1,7 +1,7 @@
 Add Solaris 12 to the pkg(5) pkg provider
 
---- puppet-3.2.4/lib/puppet/provider/package/pkg.rb.orig	2012-10-19 22:57:51.000000000 -0600
-+++ puppet-3.2.4/lib/puppet/provider/package/pkg.rb	2012-10-24 15:55:23.203830708 -0600
+--- puppet-3.4.1/lib/puppet/provider/package/pkg.rb.orig	2012-10-19 22:57:51.000000000 -0600
++++ puppet-3.4.1/lib/puppet/provider/package/pkg.rb	2012-10-24 15:55:23.203830708 -0600
 @@ -23,7 +23,7 @@
  
    confine :osfamily => :solaris
--- a/components/puppet/patches/puppet-01-installrb-nogzip-manpage.patch	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/patches/puppet-01-installrb-nogzip-manpage.patch	Fri Jan 31 14:12:10 2014 -0700
@@ -1,8 +1,8 @@
 Prevent puppet's build script from gzipping the manpages.  Our version
 of man doesn't understand manpages with a .gz extension
 
---- puppet-3.2.4/install.rb.orig	2013-01-04 14:05:09.892870020 -0700
-+++ puppet-3.2.4/install.rb	2013-01-04 14:05:40.466062888 -0700
+--- puppet-3.4.1/install.rb.orig	2013-01-04 14:05:09.892870020 -0700
++++ puppet-3.4.1/install.rb	2013-01-04 14:05:40.466062888 -0700
 @@ -146,9 +146,6 @@
        FileUtils.chmod(0755, om)
        FileUtils.install(mf, omf, {:mode => 0644, :verbose => true})
--- a/components/puppet/patches/puppet-02-zone-type.patch	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/patches/puppet-02-zone-type.patch	Fri Jan 31 14:12:10 2014 -0700
@@ -1,8 +1,8 @@
 Enhance the zone type to configure zones using a zonecfg export file format.
 Enhance the output of the puppet resource zone.
 
---- puppet-3.2.4/lib/puppet/type/zone.rb.orig	2013-07-16 16:44:01.005467245 -0600
-+++ puppet-3.2.4/lib/puppet/type/zone.rb	2013-07-16 16:45:04.216692249 -0600
+--- puppet-3.4.1/lib/puppet/type/zone.rb.orig	2013-07-16 16:44:01.005467245 -0600
++++ puppet-3.4.1/lib/puppet/type/zone.rb	2013-07-16 16:45:04.216692249 -0600
 @@ -1,10 +1,5 @@
 -require 'puppet/property/list'
  Puppet::Type.newtype(:zone) do
--- a/components/puppet/patches/puppet-03-zone-provider.patch	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/patches/puppet-03-zone-provider.patch	Fri Jan 31 14:12:10 2014 -0700
@@ -1,7 +1,7 @@
 Enhance the zone provider to configure zones using a zonecfg export file format.
 Enhance the output of puppet resource zone, and fix zone clone functionality.
---- puppet-3.2.4/lib/puppet/provider/zone/solaris.rb.orig	2013-07-29 15:48:58.118553584 -0600
-+++ puppet-3.2.4/lib/puppet/provider/zone/solaris.rb	2013-07-29 15:49:21.053204412 -0600
+--- puppet-3.4.1/lib/puppet/provider/zone/solaris.rb.orig	2013-07-29 15:48:58.118553584 -0600
++++ puppet-3.4.1/lib/puppet/provider/zone/solaris.rb	2013-07-29 15:49:21.053204412 -0600
 @@ -1,5 +1,5 @@
  Puppet::Type.type(:zone).provide(:solaris) do
 -  desc "Provider for Solaris Zones."
--- a/components/puppet/patches/puppet-04-agent-auditing.patch	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/patches/puppet-04-agent-auditing.patch	Fri Jan 31 14:12:10 2014 -0700
@@ -1,9 +1,8 @@
 Add auditing support to agent execution
 
---- puppet-3.2.4/lib/puppet/agent.rb.orig	2013-03-08 16:03:45.000000000 -0700
-+++ puppet-3.2.4/lib/puppet/agent.rb	2013-03-08 16:03:45.000000000 -0700
-@@ -1,5 +1,8 @@
- require 'sync'
+--- puppet-3.4.1/lib/puppet/agent.rb.orig	2013-03-08 16:03:45.000000000 -0700
++++ puppet-3.4.1/lib/puppet/agent.rb	2013-03-08 16:03:45.000000000 -0700
+@@ -1,4 +1,7 @@
  require 'puppet/application'
 +if Facter.value(:osfamily) == "Solaris"
 +  require 'PuppetAudit'
--- a/components/puppet/patches/puppet-05-apply-auditing.patch	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/patches/puppet-05-apply-auditing.patch	Fri Jan 31 14:12:10 2014 -0700
@@ -1,6 +1,6 @@
 Add auditing hooks for puppet apply
---- puppet-3.2.4/lib/puppet/application/apply.rb.orig	2013-06-13 12:15:55.000000000 -0600
-+++ puppet-3.2.4/lib/puppet/application/apply.rb	2013-07-01 14:02:10.263603171 -0600
+--- puppet-3.4.1/lib/puppet/application/apply.rb.orig	2013-06-13 12:15:55.000000000 -0600
++++ puppet-3.4.1/lib/puppet/application/apply.rb	2013-07-01 14:02:10.263603171 -0600
 @@ -1,5 +1,8 @@
  require 'puppet/application'
  require 'puppet/configurer'
--- a/components/puppet/patches/puppet-06-provider-smf.patch	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/patches/puppet-06-provider-smf.patch	Fri Jan 31 14:12:10 2014 -0700
@@ -1,6 +1,6 @@
 Add check for existence of smf service
---- puppet-3.2.4/lib/puppet/provider/service/smf.rb.orig	2013-07-15 09:23:24.667341073 -0600
-+++ puppet-3.2.4/lib/puppet/provider/service/smf.rb	2013-07-15 10:13:03.196178924 -0600
+--- puppet-3.4.1/lib/puppet/provider/service/smf.rb.orig	2013-07-15 09:23:24.667341073 -0600
++++ puppet-3.4.1/lib/puppet/provider/service/smf.rb	2013-07-15 10:13:03.196178924 -0600
 @@ -80,9 +80,18 @@
        return
      end
--- a/components/puppet/puppet.p5m	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/puppet.p5m	Fri Jan 31 14:12:10 2014 -0700
@@ -18,14 +18,14 @@
 #
 # CDDL HEADER END
 #
-# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 #
 
 <transform file path=usr.*/man/.+ -> default mangler.man.stability uncommitted>
 
 # do not look for .pyc files as the install.rb script does not compile
 # .py files as it installs
-<transform file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/.*\.py$ -> default pkg.tmp.autopyc false>
+<transform file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/.*\.py$ -> default pkg.tmp.autopyc false>
 set name=pkg.fmri \
     value=pkg:/system/management/puppet@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
 set name=pkg.summary value="Puppet - configuration management toolkit"
@@ -33,13 +33,13 @@
     value='Puppet is a flexible, customizable framework designed to help system administrators automate the many repetitive tasks they regularly perform. As a declarative, model-based approach to IT automation, it lets you define the desired state - or the "what" - of your infrastructure using the Puppet configuration language. Once these configurations are deployed, Puppet automatically installs the necessary packages and starts the related services, and then regularly enforces the desired state.'
 set name=com.oracle.info.description \
     value="Puppet, a configuration management toolkit"
-set name=com.oracle.info.tpno value=14695
+set name=com.oracle.info.tpno value=16191
 set name=info.classification \
     value="org.opensolaris.category.2008:System/Administration and Configuration"
 set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
 set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
-set name=org.opensolaris.arc-caseid value=PSARC/2013/005 value=PSARC/2013/221 \
-    value=PSARC/2013/288
+set name=org.opensolaris.arc-caseid value=PSARC/2013/005 value=PSARC/2013/218 \
+    value=PSARC/2013/221 value=PSARC/2013/288 value=PSARC/2013/426
 set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
 dir  path=etc/puppet owner=puppet group=puppet mode=0755
 file path=etc/puppet/auth.conf owner=puppet group=bin mode=0444
@@ -170,864 +170,970 @@
 file files/puppet.xml path=lib/svc/manifest/application/puppet.xml
 file files/puppet.stencil path=lib/svc/stencils/puppet.stencil
 file ext/PuppetAudit.so \
-    path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/$(MACH)-solaris$(SOLARIS_VERSION)/PuppetAudit.so 
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/hiera/backend/puppet_backend.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/hiera/scope.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/hiera_puppet.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/agent.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/agent/disabler.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/agent/locker.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/agent.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/apply.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/ca.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/catalog.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/cert.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/certificate.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/certificate_request.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/certificate_revocation_list.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/config.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/describe.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/device.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/doc.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/face_base.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/facts.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/filebucket.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/help.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/indirection_base.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/inspect.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/instrumentation_data.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/instrumentation_listener.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/instrumentation_probe.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/key.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/kick.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/man.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/master.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/module.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/node.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/parser.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/plugin.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/queue.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/report.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/resource.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/resource_type.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/secret_agent.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/application/status.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/configurer.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/configurer/downloader.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/configurer/fact_handler.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/configurer/plugin_handler.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/daemon.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/data_binding.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/defaults.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/dsl.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/dsl/resource_api.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/dsl/resource_type_api.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/error.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/external/base64.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/external/dot.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/external/lock.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/external/nagios.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/external/nagios/base.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/external/nagios/parser.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/external/pson/common.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/external/pson/pure.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/external/pson/pure/generator.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/external/pson/pure/parser.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/external/pson/version.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/ca.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/catalog.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/catalog/select.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/certificate.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/certificate_request.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/certificate_revocation_list.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/config.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/facts.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/file/download.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/file/store.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/help.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/help/action.erb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/help/face.erb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/help/global.erb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/help/man.erb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/instrumentation_data.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/instrumentation_listener.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/instrumentation_probe.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/key.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/man.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/module.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/module/build.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/module/changes.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/module/generate.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/module/install.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/module/list.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/module/search.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/module/uninstall.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/module/upgrade.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/node.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/node/clean.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/parser.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/plugin.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/report.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/resource.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/resource_type.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/secret_agent.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/face/status.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/feature/base.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/feature/eventlog.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/feature/libuser.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/feature/pson.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/feature/rack.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/feature/rails.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/feature/rdoc1.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/feature/rubygems.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/feature/selinux.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/feature/ssh.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/feature/stomp.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/feature/zlib.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_bucket.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_bucket/dipper.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_bucket/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_collection.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_collection/lookup.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_serving.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_serving/base.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_serving/configuration.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_serving/configuration/parser.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_serving/content.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_serving/fileset.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_serving/metadata.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_serving/mount.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_serving/mount/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_serving/mount/modules.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_serving/mount/plugins.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_serving/terminus_helper.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_serving/terminus_selector.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_system.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/file_system/path_pattern.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/forge.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/forge/cache.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/forge/errors.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/forge/repository.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/active_record.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/catalog/active_record.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/catalog/compiler.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/catalog/json.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/catalog/queue.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/catalog/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/catalog/static_compiler.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/catalog/store_configs.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/catalog/yaml.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate/ca.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate/disabled_ca.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate_request/ca.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate_request/disabled_ca.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate_request/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate_request/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate_revocation_list/ca.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate_revocation_list/disabled_ca.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate_revocation_list/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate_revocation_list/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate_status.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate_status/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/certificate_status/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/code.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/couch.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/data_binding/hiera.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/data_binding/none.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/direct_file_server.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/envelope.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/errors.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/exec.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/face.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/facts/active_record.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/facts/couch.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/facts/facter.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/facts/inventory_active_record.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/facts/inventory_service.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/facts/memory.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/facts/network_device.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/facts/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/facts/store_configs.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/facts/yaml.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/file_bucket_file/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/file_bucket_file/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/file_bucket_file/selector.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/file_content.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/file_content/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/file_content/file_server.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/file_content/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/file_content/selector.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/file_metadata.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/file_metadata/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/file_metadata/file_server.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/file_metadata/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/file_metadata/selector.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/file_server.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/hiera.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/indirection.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/instrumentation_data.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/instrumentation_data/local.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/instrumentation_data/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/instrumentation_listener.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/instrumentation_listener/local.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/instrumentation_listener/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/instrumentation_probe.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/instrumentation_probe/local.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/instrumentation_probe/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/json.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/key/ca.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/key/disabled_ca.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/key/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/ldap.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/memory.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/node/active_record.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/node/exec.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/node/ldap.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/node/memory.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/node/plain.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/node/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/node/store_configs.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/node/write_only_yaml.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/node/yaml.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/none.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/plain.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/queue.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/report/processor.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/report/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/report/yaml.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/request.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/resource/active_record.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/resource/ral.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/resource/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/resource/store_configs.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/resource/validator.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/resource_type.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/resource_type/parser.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/resource_type/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/run/local.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/run/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/ssl_file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/status.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/status/local.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/status/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/store_configs.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/terminus.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/indirector/yaml.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/interface.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/interface/action.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/interface/action_builder.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/interface/action_manager.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/interface/documentation.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/interface/face_collection.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/interface/option.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/interface/option_builder.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/interface/option_manager.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/metatype/manager.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/applications.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/applications/application.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/applications/builder.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/applications/checksummer.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/applications/generator.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/applications/installer.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/applications/searcher.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/applications/uninstaller.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/applications/unpacker.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/applications/upgrader.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/checksums.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/contents_description.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/dependency.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/errors.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/errors/base.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/errors/installer.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/errors/shared.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/errors/uninstaller.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/errors/upgrader.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/install_directory.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/metadata.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/modulefile.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/shared_behaviors.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/skeleton.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/skeleton/templates/generator/Modulefile.erb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/skeleton/templates/generator/README.erb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/skeleton/templates/generator/manifests/init.pp.erb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/skeleton/templates/generator/spec/spec_helper.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/skeleton/templates/generator/tests/init.pp.erb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/tar.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/tar/gnu.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/tar/mini.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/module_tool/tar/solaris.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/auth_config_parser.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/authconfig.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/authentication.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/authorization.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/authstore.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/client_request.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/format.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/format_handler.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/formats.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/http.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/http/api.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/http/api/v1.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/http/compression.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/http/connection.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/http/handler.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/http/rack.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/http/rack/httphandler.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/http/rack/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/http/webrick.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/http/webrick/rest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/http_pool.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/resolver.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/rest_controller.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/rights.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/network/server.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/node.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/node/environment.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/node/facts.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parameter.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parameter/package_options.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parameter/path.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parameter/value.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parameter/value_collection.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/arithmetic_operator.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/astarray.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/asthash.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/block_expression.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/boolean_operator.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/branch.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/caseopt.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/casestatement.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/collection.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/collexpr.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/comparison_operator.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/definition.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/else.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/function.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/hostclass.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/ifstatement.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/in_operator.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/lambda.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/leaf.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/match_operator.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/method_call.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/minus.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/node.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/nop.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/not.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/relationship.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/resource.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/resource_defaults.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/resource_instance.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/resource_override.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/resource_reference.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/resourceparam.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/selector.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/tag.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/top_level_construct.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/ast/vardef.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/collector.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/compiler.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/e_parser_adapter.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/files.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/collect.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/create_resources.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/defined.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/each.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/extlookup.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/fail.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/foreach.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/fqdn_rand.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/generate.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/hiera.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/hiera_array.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/hiera_hash.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/hiera_include.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/include.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/inline_template.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/md5.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/realize.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/reduce.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/regsubst.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/reject.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/require.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/search.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/select.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/sha1.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/shellquote.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/slice.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/split.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/sprintf.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/tag.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/tagged.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/template.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/functions/versioncmp.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/lexer.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/methods.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/parser.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/parser_factory.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/parser_support.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/relationship.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/resource.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/resource/param.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/scope.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/templatewrapper.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/type_loader.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/parser/yaml_trimmer.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/adaptable.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/adapters.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/containment.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/issues.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/label_provider.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/model/ast_transformer.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/model/ast_tree_dumper.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/model/factory.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/model/model.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/model/model_label_provider.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/model/model_tree_dumper.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/model/tree_dumper.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/parser/eparser.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/parser/lexer.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/parser/parser_support.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/patterns.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/utils.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/validation.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/validation/checker3_1.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/validation/validator_factory_3_1.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/visitable.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/pops/visitor.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/property.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/property/ensure.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/property/keyvalue.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/property/list.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/property/ordered_list.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/aixobject.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/augeas/augeas.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/cisco.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/command.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/computer/computer.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/confine.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/confine/exists.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/confine/false.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/confine/feature.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/confine/true.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/confine/variable.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/confine_collection.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/confiner.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/cron/crontab.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/exec.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/exec/posix.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/exec/shell.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/exec/windows.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/file/posix.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/file/windows.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/group/aix.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/group/directoryservice.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/group/groupadd.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/group/ldap.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/group/pw.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/group/windows_adsi.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/host/parsed.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/interface/cisco.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/ldap.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/macauthorization/macauthorization.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/mailalias/aliases.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/maillist/mailman.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/mcx/mcxcontent.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/mount.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/mount/parsed.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/naginator.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/nameservice.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/nameservice/directoryservice.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/nameservice/objectadd.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/nameservice/pw.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/network_device.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/aix.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/appdmg.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/apple.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/apt.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/aptitude.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/aptrpm.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/blastwave.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/dpkg.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/fink.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/freebsd.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/gem.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/hpux.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/macports.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/msi.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/nim.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/openbsd.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/opkg.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/pacman.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/pip.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/pkg.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/pkgdmg.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/pkgin.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/pkgutil.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/portage.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/ports.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/portupgrade.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/rpm.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/rug.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/sun.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/sunfreeware.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/up2date.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/urpmi.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/windows.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/windows/exe_package.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/windows/msi_package.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/windows/package.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/yum.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/yumhelper.py
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/package/zypper.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/parsedfile.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/port/parsed.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/scheduled_task/win32_taskscheduler.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/selboolean/getsetsebool.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/selmodule/semodule.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/base.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/bsd.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/daemontools.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/debian.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/freebsd.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/gentoo.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/init.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/launchd.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/openrc.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/openwrt.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/redhat.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/runit.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/service.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/smf.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/src.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/systemd.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/upstart.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/service/windows.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/ssh_authorized_key/parsed.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/sshkey/parsed.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/user/aix.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/user/directoryservice.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/user/hpux.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/user/ldap.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/user/pw.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/user/user_role_add.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/user/useradd.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/user/windows_adsi.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/vlan/cisco.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/zfs/zfs.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/zone/solaris.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/provider/zpool/zpool.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/benchmark.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/database/001_add_created_at_to_all_tables.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/database/002_remove_duplicated_index_on_all_tables.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/database/003_add_environment_to_host.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/database/004_add_inventory_service_tables.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/database/schema.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/fact_name.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/fact_value.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/host.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/inventory_fact.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/inventory_node.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/param_name.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/param_value.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/puppet_tag.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/resource.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/resource_tag.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rails/source_file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/rb_tree_map.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/reference/configuration.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/reference/function.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/reference/indirection.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/reference/metaparameter.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/reference/providers.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/reference/report.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/reference/type.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/relationship.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/reports.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/reports/http.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/reports/log.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/reports/rrdgraph.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/reports/store.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/reports/tagmail.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/resource.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/resource/catalog.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/resource/status.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/resource/type.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/resource/type_collection.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/resource/type_collection_helper.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/run.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/scheduler.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/scheduler/job.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/scheduler/scheduler.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/scheduler/splay_job.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/scheduler/timer.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/settings.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/settings/base_setting.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/settings/boolean_setting.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/settings/config_file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/settings/directory_setting.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/settings/duration_setting.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/settings/errors.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/settings/file_setting.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/settings/path_setting.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/settings/string_setting.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/settings/terminus_setting.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/settings/value_translator.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/simple_graph.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl/base.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl/certificate.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl/certificate_authority.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl/certificate_authority/interface.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl/certificate_factory.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl/certificate_request.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl/certificate_revocation_list.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl/certificate_signer.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl/configuration.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl/digest.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl/host.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl/inventory.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl/key.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/ssl/validator.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/status.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/test/test_helper.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/transaction.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/transaction/event.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/transaction/event_manager.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/transaction/report.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/transaction/resource_harness.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/augeas.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/component.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/computer.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/cron.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/exec.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/file/checksum.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/file/content.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/file/ctime.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/file/ensure.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/file/group.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/file/mode.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/file/mtime.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/file/owner.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/file/selcontext.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/file/source.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/file/target.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/file/type.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/filebucket.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/group.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/host.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/interface.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/k5login.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/macauthorization.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/mailalias.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/maillist.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/mcx.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/mount.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/nagios_command.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/nagios_contact.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/nagios_contactgroup.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/nagios_host.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/nagios_hostdependency.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/nagios_hostescalation.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/nagios_hostextinfo.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/nagios_hostgroup.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/nagios_service.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/nagios_servicedependency.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/nagios_serviceescalation.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/nagios_serviceextinfo.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/nagios_servicegroup.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/nagios_timeperiod.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/notify.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/package.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/port.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/resources.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/router.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/schedule.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/scheduled_task.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/selboolean.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/selmodule.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/service.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/ssh_authorized_key.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/sshkey.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/stage.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/tidy.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/user.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/vlan.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/whit.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/yumrepo.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/zfs.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/zone.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/type/zpool.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/adsi.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/autoload.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/backups.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/cacher.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/checksums.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/classgen.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/colors.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/command_line.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/command_line/puppet_option_parser.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/command_line/trollop.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/constant_inflector.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/diff.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/docs.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/errors.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/execution.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/execution_stub.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/feature.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/fileparsing.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/filetype.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/graph.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/inifile.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/inline_docs.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/instance_loader.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/instrumentation.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/instrumentation/data.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/instrumentation/indirection_probe.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/instrumentation/instrumentable.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/instrumentation/listener.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/instrumentation/listeners/log.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/instrumentation/listeners/performance.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/json_lockfile.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/ldap.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/ldap/connection.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/ldap/generator.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/ldap/manager.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/libuser.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/loadedfile.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/lockfile.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/log.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/log/destination.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/log/destinations.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/log/rate_limited_logger.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/log_paths.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/logging.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/metaid.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/methodhelper.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/metric.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/monkey_patches.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/monkey_patches/lines.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/nagios_maker.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/network_device.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/network_device/base.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/network_device/cisco.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/network_device/cisco/device.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/network_device/cisco/facts.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/network_device/cisco/interface.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/network_device/config.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/network_device/ipcalc.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/network_device/transport.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/network_device/transport/base.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/network_device/transport/ssh.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/network_device/transport/telnet.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/package.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/pidlock.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/platform.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/plugins.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/posix.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/profiler.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/profiler/logging.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/profiler/none.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/profiler/object_counts.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/profiler/wall_clock.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/provider_features.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/pson.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/queue.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/queue/stomp.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/rails/cache_accumulator.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/rails/collection_merger.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/rails/reference_serializer.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/rdoc.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/rdoc/code_objects.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/rdoc/generators/puppet_generator.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/rdoc/generators/template/puppet/puppet.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/rdoc/parser.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/reference.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/resource_template.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/retryaction.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/rubygems.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/run_mode.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/selinux.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/ssl.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/storage.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/subclass_loader.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/suidmanager.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/symbolic_file_mode.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/tagging.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/terminal.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/user_attr.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/warnings.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/windows.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/windows/error.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/windows/file.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/windows/process.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/windows/registry.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/windows/root_certs.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/windows/security.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/windows/sid.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/windows/user.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/util/zaml.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/load_safe_yaml.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/require_vendored.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/deep.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/parse/date.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/parse/hexadecimal.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/parse/sexagesimal.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/psych_handler.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/psych_resolver.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/resolver.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/safe_to_ruby_visitor.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/syck_hack.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/syck_node_monkeypatch.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/syck_resolver.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/transform.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_boolean.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_date.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_float.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_integer.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_nil.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_symbol.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/transform/transformation_map.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/lib/safe_yaml/version.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/spec/psych_resolver_spec.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/spec/resolver_specs.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/spec/safe_yaml_spec.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/spec/spec_helper.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/spec/syck_resolver_spec.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/spec/transform/base64_spec.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/spec/transform/to_date_spec.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/spec/transform/to_float_spec.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/spec/transform/to_integer_spec.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml/spec/transform/to_symbol_spec.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/vendor/safe_yaml_patches.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/puppet/version.rb
-file path=usr/ruby/1.9/lib/$(MACH64)/ruby/vendor_ruby/1.9.1/semver.rb
+    path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/$(MACH)-solaris$(SOLARIS_VERSION)/PuppetAudit.so
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/hiera/backend/puppet_backend.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/hiera/scope.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/hiera_puppet.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/agent.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/agent/disabler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/agent/locker.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/agent.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/apply.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/ca.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/catalog.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/cert.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/certificate.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/certificate_request.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/certificate_revocation_list.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/config.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/describe.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/device.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/doc.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/face_base.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/facts.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/filebucket.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/help.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/indirection_base.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/inspect.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/instrumentation_data.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/instrumentation_listener.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/instrumentation_probe.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/key.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/kick.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/man.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/master.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/module.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/node.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/parser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/plugin.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/queue.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/report.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/resource.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/resource_type.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/secret_agent.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/application/status.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/bindings.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/coercion.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/configurer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/configurer/downloader.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/configurer/fact_handler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/configurer/plugin_handler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/confine.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/confine/exists.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/confine/false.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/confine/feature.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/confine/true.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/confine/variable.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/confine_collection.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/confiner.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/daemon.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/data_binding.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/defaults.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/dsl.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/dsl/resource_api.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/dsl/resource_type_api.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/error.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/external/dot.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/external/nagios.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/external/nagios/base.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/external/nagios/grammar.ry
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/external/nagios/makefile
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/external/nagios/parser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/external/pson/common.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/external/pson/pure.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/external/pson/pure/generator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/external/pson/pure/parser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/external/pson/version.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/ca.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/catalog.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/catalog/select.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/certificate.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/certificate_request.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/certificate_revocation_list.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/config.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/facts.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/file/download.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/file/store.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/help.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/help/action.erb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/help/face.erb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/help/global.erb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/help/man.erb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/instrumentation_data.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/instrumentation_listener.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/instrumentation_probe.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/key.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/man.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/module.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/module/build.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/module/changes.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/module/generate.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/module/install.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/module/list.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/module/search.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/module/uninstall.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/module/upgrade.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/node.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/node/clean.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/parser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/plugin.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/report.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/resource.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/resource_type.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/secret_agent.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/face/status.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/feature/base.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/feature/eventlog.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/feature/external_facts.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/feature/libuser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/feature/msgpack.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/feature/pson.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/feature/rack.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/feature/rails.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/feature/rdoc1.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/feature/rubygems.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/feature/selinux.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/feature/ssh.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/feature/stomp.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/feature/zlib.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_bucket.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_bucket/dipper.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_bucket/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_collection.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_collection/lookup.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_serving.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_serving/base.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_serving/configuration.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_serving/configuration/parser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_serving/content.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_serving/fileset.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_serving/metadata.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_serving/mount.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_serving/mount/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_serving/mount/modules.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_serving/mount/pluginfacts.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_serving/mount/plugins.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_serving/terminus_helper.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_serving/terminus_selector.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_system.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_system/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_system/file18.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_system/file19.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_system/file19windows.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_system/memory_file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_system/path_pattern.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/file_system/tempfile.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/forge.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/forge/cache.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/forge/errors.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/forge/repository.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/graph.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/graph/key.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/graph/prioritizer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/graph/random_prioritizer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/graph/rb_tree_map.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/graph/relationship_graph.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/graph/sequential_prioritizer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/graph/simple_graph.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/graph/title_hash_prioritizer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/active_record.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/catalog/active_record.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/catalog/compiler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/catalog/json.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/catalog/queue.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/catalog/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/catalog/static_compiler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/catalog/store_configs.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/catalog/yaml.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate/ca.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate/disabled_ca.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate_request/ca.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate_request/disabled_ca.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate_request/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate_request/memory.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate_request/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate_revocation_list/ca.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate_revocation_list/disabled_ca.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate_revocation_list/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate_revocation_list/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate_status.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate_status/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/certificate_status/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/code.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/couch.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/data_binding/hiera.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/data_binding/none.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/direct_file_server.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/envelope.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/errors.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/exec.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/face.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/facts/active_record.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/facts/couch.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/facts/facter.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/facts/inventory_active_record.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/facts/inventory_service.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/facts/memory.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/facts/network_device.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/facts/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/facts/store_configs.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/facts/yaml.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/file_bucket_file/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/file_bucket_file/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/file_bucket_file/selector.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/file_content.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/file_content/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/file_content/file_server.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/file_content/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/file_content/selector.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/file_metadata.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/file_metadata/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/file_metadata/file_server.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/file_metadata/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/file_metadata/selector.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/file_server.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/indirection.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/instrumentation_data.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/instrumentation_data/local.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/instrumentation_data/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/instrumentation_listener.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/instrumentation_listener/local.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/instrumentation_listener/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/instrumentation_probe.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/instrumentation_probe/local.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/instrumentation_probe/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/json.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/key/ca.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/key/disabled_ca.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/key/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/key/memory.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/ldap.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/memory.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/node/active_record.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/node/exec.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/node/ldap.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/node/memory.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/node/plain.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/node/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/node/store_configs.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/node/write_only_yaml.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/node/yaml.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/none.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/plain.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/queue.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/report/processor.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/report/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/report/yaml.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/request.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/resource/active_record.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/resource/ral.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/resource/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/resource/store_configs.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/resource/validator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/resource_type.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/resource_type/parser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/resource_type/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/run/local.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/run/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/ssl_file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/status.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/status/local.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/status/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/store_configs.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/terminus.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/indirector/yaml.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/interface.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/interface/action.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/interface/action_builder.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/interface/action_manager.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/interface/documentation.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/interface/face_collection.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/interface/option.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/interface/option_builder.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/interface/option_manager.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/metatype/manager.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/applications.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/applications/application.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/applications/builder.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/applications/checksummer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/applications/generator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/applications/installer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/applications/searcher.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/applications/uninstaller.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/applications/unpacker.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/applications/upgrader.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/checksums.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/contents_description.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/dependency.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/errors.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/errors/base.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/errors/installer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/errors/shared.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/errors/uninstaller.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/errors/upgrader.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/install_directory.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/metadata.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/modulefile.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/shared_behaviors.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/skeleton.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/skeleton/templates/generator/Modulefile.erb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/skeleton/templates/generator/README.erb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/skeleton/templates/generator/manifests/init.pp.erb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/skeleton/templates/generator/spec/spec_helper.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/skeleton/templates/generator/tests/init.pp.erb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/tar.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/tar/gnu.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/tar/mini.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/module_tool/tar/solaris.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/auth_config_parser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/authconfig.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/authentication.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/authorization.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/authstore.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/client_request.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/format.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/format_handler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/format_support.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/formats.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/http.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/http/api.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/http/api/v1.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/http/compression.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/http/connection.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/http/handler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/http/rack.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/http/rack/httphandler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/http/rack/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/http/webrick.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/http/webrick/rest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/http_pool.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/resolver.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/rest_controller.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/rights.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/network/server.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/node.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/node/environment.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/node/facts.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parameter.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parameter/boolean.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parameter/package_options.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parameter/path.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parameter/value.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parameter/value_collection.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/arithmetic_operator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/astarray.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/asthash.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/block_expression.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/boolean_operator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/branch.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/caseopt.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/casestatement.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/collection.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/collexpr.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/comparison_operator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/definition.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/else.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/function.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/hostclass.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/ifstatement.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/in_operator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/lambda.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/leaf.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/match_operator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/method_call.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/minus.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/node.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/nop.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/not.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/relationship.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/resource.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/resource_defaults.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/resource_instance.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/resource_override.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/resource_reference.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/resourceparam.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/selector.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/tag.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/top_level_construct.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/ast/vardef.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/collector.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/compiler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/e_parser_adapter.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/files.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/collect.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/contain.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/create_resources.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/defined.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/each.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/extlookup.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/fail.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/filter.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/fqdn_rand.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/generate.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/hiera.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/hiera_array.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/hiera_hash.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/hiera_include.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/include.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/inline_template.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/lookup.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/map.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/md5.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/realize.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/reduce.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/regsubst.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/require.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/search.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/select.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/sha1.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/shellquote.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/slice.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/split.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/sprintf.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/tag.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/tagged.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/template.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/functions/versioncmp.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/grammar.ra
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/lexer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/makefile
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/methods.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/parser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/parser_factory.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/parser_support.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/relationship.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/resource.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/resource/param.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/scope.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/templatewrapper.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/type_loader.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/parser/yaml_trimmer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/adaptable.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/adapters.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/binder.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/binder_issues.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/bindings_checker.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/bindings_composer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/bindings_factory.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/bindings_label_provider.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/bindings_loader.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/bindings_model.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/bindings_model_dumper.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/bindings_validator_factory.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/config/binder_config.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/config/binder_config_checker.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/config/diagnostic_producer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/config/issues.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/hiera2.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/hiera2/bindings_provider.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/hiera2/config.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/hiera2/config_checker.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/hiera2/diagnostic_producer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/hiera2/issues.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/hiera2/json_backend.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/hiera2/yaml_backend.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/injector.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/injector_entry.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/key_factory.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/producers.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/scheme_handler/confdir_hiera_scheme.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/scheme_handler/confdir_scheme.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/scheme_handler/module_hiera_scheme.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/scheme_handler/module_scheme.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/scheme_handler/symbolic_scheme.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/binder/system_bindings.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/containment.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/issue_reporter.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/issues.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/label_provider.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/model/ast_transformer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/model/ast_tree_dumper.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/model/factory.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/model/model.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/model/model_label_provider.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/model/model_tree_dumper.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/model/tree_dumper.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/parser/egrammar.ra
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/parser/eparser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/parser/evaluating_parser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/parser/grammar.ra
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/parser/lexer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/parser/makefile
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/parser/parser_support.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/patterns.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/types/class_loader.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/types/type_calculator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/types/type_factory.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/types/type_parser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/types/types.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/utils.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/validation.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/validation/checker3_1.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/validation/validator_factory_3_1.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/visitable.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/pops/visitor.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/property.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/property/boolean.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/property/ensure.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/property/keyvalue.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/property/list.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/property/ordered_list.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/aixobject.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/augeas/augeas.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/cisco.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/command.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/computer/computer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/confine.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/cron/crontab.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/exec.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/exec/posix.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/exec/shell.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/exec/windows.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/file/posix.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/file/windows.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/group/aix.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/group/directoryservice.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/group/groupadd.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/group/ldap.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/group/pw.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/group/windows_adsi.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/host/parsed.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/interface/cisco.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/ldap.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/macauthorization/macauthorization.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/mailalias/aliases.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/maillist/mailman.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/mcx/mcxcontent.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/mount.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/mount/parsed.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/naginator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/nameservice.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/nameservice/directoryservice.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/nameservice/objectadd.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/nameservice/pw.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/network_device.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/aix.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/appdmg.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/apple.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/apt.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/aptitude.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/aptrpm.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/blastwave.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/dpkg.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/fink.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/freebsd.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/gem.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/hpux.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/macports.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/msi.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/nim.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/openbsd.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/opkg.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/pacman.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/pip.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/pkg.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/pkgdmg.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/pkgin.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/pkgutil.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/portage.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/ports.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/portupgrade.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/rpm.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/rug.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/sun.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/sunfreeware.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/up2date.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/urpmi.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/windows.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/windows/exe_package.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/windows/msi_package.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/windows/package.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/yum.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/yumhelper.py
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/package/zypper.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/parsedfile.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/port/parsed.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/scheduled_task/win32_taskscheduler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/selboolean/getsetsebool.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/selmodule/semodule.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/base.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/bsd.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/daemontools.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/debian.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/freebsd.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/gentoo.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/init.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/launchd.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/openbsd.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/openrc.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/openwrt.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/redhat.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/runit.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/service.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/smf.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/src.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/systemd.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/upstart.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/service/windows.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/ssh_authorized_key/parsed.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/sshkey/parsed.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/user/aix.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/user/directoryservice.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/user/hpux.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/user/ldap.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/user/pw.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/user/user_role_add.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/user/useradd.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/user/windows_adsi.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/vlan/cisco.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/zfs/zfs.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/zone/solaris.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/provider/zpool/zpool.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/benchmark.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/database/001_add_created_at_to_all_tables.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/database/002_remove_duplicated_index_on_all_tables.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/database/003_add_environment_to_host.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/database/004_add_inventory_service_tables.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/database/schema.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/fact_name.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/fact_value.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/host.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/inventory_fact.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/inventory_node.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/param_name.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/param_value.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/puppet_tag.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/resource.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/resource_tag.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/rails/source_file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/reference/configuration.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/reference/function.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/reference/indirection.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/reference/metaparameter.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/reference/providers.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/reference/report.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/reference/type.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/relationship.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/reports.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/reports/http.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/reports/log.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/reports/rrdgraph.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/reports/store.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/reports/tagmail.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/resource.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/resource/catalog.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/resource/status.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/resource/type.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/resource/type_collection.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/resource/type_collection_helper.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/run.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/scheduler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/scheduler/job.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/scheduler/scheduler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/scheduler/splay_job.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/scheduler/timer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings/autosign_setting.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings/base_setting.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings/boolean_setting.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings/config_file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings/directory_setting.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings/duration_setting.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings/enum_setting.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings/errors.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings/file_setting.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings/path_setting.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings/priority_setting.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings/string_setting.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings/terminus_setting.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/settings/value_translator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/base.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/certificate.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/certificate_authority.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/certificate_authority/autosign_command.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/certificate_authority/interface.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/certificate_factory.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/certificate_request.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/certificate_request_attributes.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/certificate_revocation_list.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/certificate_signer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/configuration.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/digest.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/host.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/inventory.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/key.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/oids.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/validator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/validator/default_validator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/ssl/validator/no_validator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/status.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/test/test_helper.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/transaction.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/transaction/additional_resource_generator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/transaction/event.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/transaction/event_manager.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/transaction/report.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/transaction/resource_harness.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/augeas.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/component.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/computer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/cron.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/exec.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/file/checksum.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/file/content.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/file/ctime.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/file/ensure.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/file/group.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/file/mode.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/file/mtime.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/file/owner.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/file/selcontext.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/file/source.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/file/target.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/file/type.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/filebucket.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/group.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/host.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/interface.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/k5login.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/macauthorization.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/mailalias.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/maillist.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/mcx.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/mount.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/nagios_command.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/nagios_contact.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/nagios_contactgroup.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/nagios_host.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/nagios_hostdependency.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/nagios_hostescalation.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/nagios_hostextinfo.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/nagios_hostgroup.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/nagios_service.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/nagios_servicedependency.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/nagios_serviceescalation.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/nagios_serviceextinfo.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/nagios_servicegroup.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/nagios_timeperiod.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/notify.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/package.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/port.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/resources.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/router.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/schedule.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/scheduled_task.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/selboolean.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/selmodule.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/service.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/ssh_authorized_key.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/sshkey.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/stage.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/tidy.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/user.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/vlan.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/whit.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/yumrepo.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/zfs.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/zone.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/type/zpool.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/adsi.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/autoload.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/backups.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/cacher.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/checksums.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/classgen.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/colors.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/command_line.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/command_line/puppet_option_parser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/command_line/trollop.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/constant_inflector.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/diff.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/docs.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/errors.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/execution.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/execution_stub.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/feature.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/file_watcher.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/fileparsing.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/filetype.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/http_proxy.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/inifile.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/inline_docs.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/instance_loader.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/instrumentation.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/instrumentation/data.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/instrumentation/indirection_probe.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/instrumentation/instrumentable.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/instrumentation/listener.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/instrumentation/listeners/log.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/instrumentation/listeners/performance.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/json_lockfile.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/ldap.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/ldap/connection.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/ldap/generator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/ldap/manager.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/libuser.conf
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/libuser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/limits.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/lockfile.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/log.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/log/destination.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/log/destinations.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/log/rate_limited_logger.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/logging.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/metaid.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/methodhelper.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/metric.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/monkey_patches.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/monkey_patches/lines.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/nagios_maker.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/network_device.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/network_device/base.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/network_device/cisco.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/network_device/cisco/device.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/network_device/cisco/facts.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/network_device/cisco/interface.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/network_device/config.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/network_device/ipcalc.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/network_device/transport.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/network_device/transport/base.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/network_device/transport/ssh.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/network_device/transport/telnet.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/package.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/pidlock.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/platform.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/plugins.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/posix.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/profiler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/profiler/logging.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/profiler/none.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/profiler/object_counts.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/profiler/wall_clock.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/provider_features.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/pson.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/queue.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/queue/stomp.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/rails/cache_accumulator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/rails/collection_merger.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/rails/reference_serializer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/rdoc.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/rdoc/code_objects.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/rdoc/generators/puppet_generator.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/rdoc/generators/template/puppet/puppet.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/rdoc/parser.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/rdoc/parser/puppet_parser_core.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/rdoc/parser/puppet_parser_rdoc1.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/rdoc/parser/puppet_parser_rdoc2.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/reference.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/resource_template.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/retryaction.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/rubygems.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/run_mode.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/selinux.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/ssl.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/storage.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/suidmanager.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/symbolic_file_mode.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/tag_set.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/tagging.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/terminal.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/user_attr.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/warnings.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/watched_file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/watcher.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/watcher/change_watcher.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/watcher/periodic_watcher.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/watcher/timer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/windows.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/windows/access_control_entry.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/windows/access_control_list.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/windows/error.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/windows/file.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/windows/process.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/windows/registry.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/windows/root_certs.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/windows/security.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/windows/security_descriptor.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/windows/sid.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/windows/user.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/yaml.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/util/zaml.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/load_safe_yaml.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/require_vendored.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/CHANGES.md
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/Gemfile
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/LICENSE.txt
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/README.md
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/Rakefile
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/deep.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/parse/date.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/parse/hexadecimal.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/parse/sexagesimal.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/psych_handler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/psych_resolver.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/resolver.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/safe_to_ruby_visitor.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/syck_hack.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/syck_node_monkeypatch.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/syck_resolver.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/transform.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_boolean.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_date.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_float.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_integer.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_nil.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_symbol.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/transform/transformation_map.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/lib/safe_yaml/version.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/run_specs_all_ruby_versions.sh
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/safe_yaml.gemspec
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/spec/exploit.$(RUBY_VERSION).2.yaml
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/spec/exploit.$(RUBY_VERSION).3.yaml
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/spec/psych_resolver_spec.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/spec/resolver_specs.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/spec/safe_yaml_spec.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/spec/spec_helper.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/spec/syck_resolver_spec.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/spec/transform/base64_spec.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/spec/transform/to_date_spec.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/spec/transform/to_float_spec.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/spec/transform/to_integer_spec.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml/spec/transform/to_symbol_spec.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/vendor/safe_yaml_patches.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppet/version.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppetx.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppetx/puppet/bindings_scheme_handler.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppetx/puppet/hiera2_backend.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppetx/puppet/syntax_checker.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/puppetx/puppetlabs/syntax_checkers/json.rb
+file path=usr/ruby/$(RUBY_VERSION)/lib/$(MACH64)/ruby/vendor_ruby/$(RUBY_LIB_VERSION)/semver.rb
 file path=usr/sbin/extlookup2hiera
 file path=usr/sbin/puppet
 file path=usr/share/man/man5/puppet.conf.5
@@ -1073,10 +1179,8 @@
 user username=puppet ftpuser=false gcos-field="Puppet Admin" group=puppet \
     home-dir=/etc/puppet login-shell=/bin/false uid=40
 license puppet.license license="Apache v2.0"
-#
-# Puppet has a hard dependency on facter.
-# Facter & puppet were both changed to use ruby 1.9 in 
-# the same build in which facter was updated to 1.6.18.
-# We make the dependency on facter 1.6.18, to ensure
-# puppet and facter are both using ruby 1.9.
+# Puppet has a hard dependency on facter.  Facter & puppet were both
+# changed to use ruby 1.9 in the same build in which facter was
+# updated to 1.6.18.  We make the dependency on facter 1.6.18, to
+# ensure puppet and facter are both using ruby 1.9
 depend type=require fmri=system/management/[email protected]
--- a/components/puppet/resolve.deps	Thu Jan 09 03:35:51 2014 -0800
+++ b/components/puppet/resolve.deps	Fri Jan 31 14:12:10 2014 -0700
@@ -5,3 +5,4 @@
 system/library/gcc/gcc-c-runtime
 system/library/math
 system/linker
+system/network