bolt 0.20.0 → 0.20.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bolt might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/lib/bolt/cli.rb +5 -0
- data/lib/bolt/puppetdb/client.rb +1 -1
- data/lib/bolt/transport/ssh.rb +1 -1
- data/lib/bolt/util/on_access.rb +4 -2
- data/lib/bolt/version.rb +1 -1
- data/vendored/facter/lib/facter.rb +261 -0
- data/vendored/facter/lib/facter/Cfkey.rb +42 -0
- data/vendored/facter/lib/facter/application.rb +206 -0
- data/vendored/facter/lib/facter/architecture.rb +50 -0
- data/vendored/facter/lib/facter/augeasversion.rb +28 -0
- data/vendored/facter/lib/facter/blockdevices.rb +105 -0
- data/vendored/facter/lib/facter/core/aggregate.rb +220 -0
- data/vendored/facter/lib/facter/core/directed_graph.rb +46 -0
- data/vendored/facter/lib/facter/core/execution.rb +123 -0
- data/vendored/facter/lib/facter/core/execution/base.rb +81 -0
- data/vendored/facter/lib/facter/core/execution/posix.rb +50 -0
- data/vendored/facter/lib/facter/core/execution/windows.rb +57 -0
- data/vendored/facter/lib/facter/core/logging.rb +197 -0
- data/vendored/facter/lib/facter/core/resolvable.rb +94 -0
- data/vendored/facter/lib/facter/core/suitable.rb +113 -0
- data/vendored/facter/lib/facter/dhcp_servers.rb +45 -0
- data/vendored/facter/lib/facter/domain.rb +99 -0
- data/vendored/facter/lib/facter/ec2.rb +68 -0
- data/vendored/facter/lib/facter/ec2/rest.rb +137 -0
- data/vendored/facter/lib/facter/facterversion.rb +15 -0
- data/vendored/facter/lib/facter/filesystems.rb +45 -0
- data/vendored/facter/lib/facter/fqdn.rb +24 -0
- data/vendored/facter/lib/facter/gce.rb +16 -0
- data/vendored/facter/lib/facter/gce/metadata.rb +87 -0
- data/vendored/facter/lib/facter/gid.rb +25 -0
- data/vendored/facter/lib/facter/hardwareisa.rb +20 -0
- data/vendored/facter/lib/facter/hardwaremodel.rb +67 -0
- data/vendored/facter/lib/facter/hostname.rb +31 -0
- data/vendored/facter/lib/facter/id.rb +21 -0
- data/vendored/facter/lib/facter/interfaces.rb +58 -0
- data/vendored/facter/lib/facter/ipaddress.rb +169 -0
- data/vendored/facter/lib/facter/ipaddress6.rb +82 -0
- data/vendored/facter/lib/facter/iphostnumber.rb +29 -0
- data/vendored/facter/lib/facter/kernel.rb +22 -0
- data/vendored/facter/lib/facter/kernelmajversion.rb +23 -0
- data/vendored/facter/lib/facter/kernelrelease.rb +45 -0
- data/vendored/facter/lib/facter/kernelversion.rb +22 -0
- data/vendored/facter/lib/facter/ldom.rb +51 -0
- data/vendored/facter/lib/facter/lsbdistcodename.rb +20 -0
- data/vendored/facter/lib/facter/lsbdistdescription.rb +21 -0
- data/vendored/facter/lib/facter/lsbdistid.rb +20 -0
- data/vendored/facter/lib/facter/lsbdistrelease.rb +20 -0
- data/vendored/facter/lib/facter/lsbmajdistrelease.rb +22 -0
- data/vendored/facter/lib/facter/lsbminordistrelease.rb +22 -0
- data/vendored/facter/lib/facter/lsbrelease.rb +20 -0
- data/vendored/facter/lib/facter/macaddress.rb +99 -0
- data/vendored/facter/lib/facter/macosx.rb +56 -0
- data/vendored/facter/lib/facter/manufacturer.rb +68 -0
- data/vendored/facter/lib/facter/memory.rb +168 -0
- data/vendored/facter/lib/facter/netmask.rb +43 -0
- data/vendored/facter/lib/facter/network.rb +20 -0
- data/vendored/facter/lib/facter/operatingsystem.rb +24 -0
- data/vendored/facter/lib/facter/operatingsystem/base.rb +61 -0
- data/vendored/facter/lib/facter/operatingsystem/cumuluslinux.rb +27 -0
- data/vendored/facter/lib/facter/operatingsystem/implementation.rb +33 -0
- data/vendored/facter/lib/facter/operatingsystem/linux.rb +484 -0
- data/vendored/facter/lib/facter/operatingsystem/osreleaselinux.rb +28 -0
- data/vendored/facter/lib/facter/operatingsystem/sunos.rb +54 -0
- data/vendored/facter/lib/facter/operatingsystem/vmkernel.rb +11 -0
- data/vendored/facter/lib/facter/operatingsystem/windows.rb +43 -0
- data/vendored/facter/lib/facter/operatingsystemmajrelease.rb +31 -0
- data/vendored/facter/lib/facter/operatingsystemrelease.rb +29 -0
- data/vendored/facter/lib/facter/os.rb +98 -0
- data/vendored/facter/lib/facter/osfamily.rb +18 -0
- data/vendored/facter/lib/facter/partitions.rb +39 -0
- data/vendored/facter/lib/facter/path.rb +14 -0
- data/vendored/facter/lib/facter/physicalprocessorcount.rb +27 -0
- data/vendored/facter/lib/facter/processor.rb +52 -0
- data/vendored/facter/lib/facter/processors.rb +66 -0
- data/vendored/facter/lib/facter/processors/os.rb +244 -0
- data/vendored/facter/lib/facter/ps.rb +31 -0
- data/vendored/facter/lib/facter/puppetversion.rb +20 -0
- data/vendored/facter/lib/facter/rackspace.rb +37 -0
- data/vendored/facter/lib/facter/rubyplatform.rb +12 -0
- data/vendored/facter/lib/facter/rubysitedir.rb +15 -0
- data/vendored/facter/lib/facter/rubyversion.rb +12 -0
- data/vendored/facter/lib/facter/selinux.rb +154 -0
- data/vendored/facter/lib/facter/ssh.rb +73 -0
- data/vendored/facter/lib/facter/system32.rb +21 -0
- data/vendored/facter/lib/facter/system_uptime.rb +44 -0
- data/vendored/facter/lib/facter/timezone.rb +14 -0
- data/vendored/facter/lib/facter/uniqueid.rb +4 -0
- data/vendored/facter/lib/facter/uptime.rb +16 -0
- data/vendored/facter/lib/facter/uptime_days.rb +13 -0
- data/vendored/facter/lib/facter/uptime_hours.rb +13 -0
- data/vendored/facter/lib/facter/uptime_seconds.rb +20 -0
- data/vendored/facter/lib/facter/util/architecture.rb +19 -0
- data/vendored/facter/lib/facter/util/collection.rb +161 -0
- data/vendored/facter/lib/facter/util/composite_loader.rb +12 -0
- data/vendored/facter/lib/facter/util/config.rb +88 -0
- data/vendored/facter/lib/facter/util/confine.rb +66 -0
- data/vendored/facter/lib/facter/util/dhcp_servers.rb +58 -0
- data/vendored/facter/lib/facter/util/directory_loader.rb +88 -0
- data/vendored/facter/lib/facter/util/ec2.rb +106 -0
- data/vendored/facter/lib/facter/util/fact.rb +204 -0
- data/vendored/facter/lib/facter/util/file_read.rb +37 -0
- data/vendored/facter/lib/facter/util/formatter.rb +39 -0
- data/vendored/facter/lib/facter/util/ip.rb +340 -0
- data/vendored/facter/lib/facter/util/ip/windows.rb +215 -0
- data/vendored/facter/lib/facter/util/loader.rb +155 -0
- data/vendored/facter/lib/facter/util/macaddress.rb +43 -0
- data/vendored/facter/lib/facter/util/macosx.rb +73 -0
- data/vendored/facter/lib/facter/util/manufacturer.rb +99 -0
- data/vendored/facter/lib/facter/util/memory.rb +228 -0
- data/vendored/facter/lib/facter/util/netmask.rb +40 -0
- data/vendored/facter/lib/facter/util/normalization.rb +94 -0
- data/vendored/facter/lib/facter/util/nothing_loader.rb +12 -0
- data/vendored/facter/lib/facter/util/operatingsystem.rb +21 -0
- data/vendored/facter/lib/facter/util/parser.rb +168 -0
- data/vendored/facter/lib/facter/util/partitions.rb +47 -0
- data/vendored/facter/lib/facter/util/partitions/linux.rb +71 -0
- data/vendored/facter/lib/facter/util/partitions/openbsd.rb +40 -0
- data/vendored/facter/lib/facter/util/plist.rb +24 -0
- data/vendored/facter/lib/facter/util/plist/generator.rb +228 -0
- data/vendored/facter/lib/facter/util/plist/parser.rb +226 -0
- data/vendored/facter/lib/facter/util/posix.rb +16 -0
- data/vendored/facter/lib/facter/util/processor.rb +289 -0
- data/vendored/facter/lib/facter/util/registry.rb +11 -0
- data/vendored/facter/lib/facter/util/resolution.rb +160 -0
- data/vendored/facter/lib/facter/util/solaris_zones.rb +158 -0
- data/vendored/facter/lib/facter/util/unix_root.rb +5 -0
- data/vendored/facter/lib/facter/util/uptime.rb +83 -0
- data/vendored/facter/lib/facter/util/values.rb +109 -0
- data/vendored/facter/lib/facter/util/virtual.rb +212 -0
- data/vendored/facter/lib/facter/util/vlans.rb +21 -0
- data/vendored/facter/lib/facter/util/windows.rb +10 -0
- data/vendored/facter/lib/facter/util/windows/api_types.rb +135 -0
- data/vendored/facter/lib/facter/util/windows/dir.rb +43 -0
- data/vendored/facter/lib/facter/util/windows/error.rb +87 -0
- data/vendored/facter/lib/facter/util/windows/process.rb +294 -0
- data/vendored/facter/lib/facter/util/windows/user.rb +186 -0
- data/vendored/facter/lib/facter/util/windows_root.rb +7 -0
- data/vendored/facter/lib/facter/util/wmi.rb +49 -0
- data/vendored/facter/lib/facter/util/xendomains.rb +28 -0
- data/vendored/facter/lib/facter/version.rb +86 -0
- data/vendored/facter/lib/facter/virtual.rb +330 -0
- data/vendored/facter/lib/facter/vlans.rb +17 -0
- data/vendored/facter/lib/facter/xendomains.rb +20 -0
- data/vendored/facter/lib/facter/zfs_version.rb +14 -0
- data/vendored/facter/lib/facter/zonename.rb +6 -0
- data/vendored/facter/lib/facter/zones.rb +18 -0
- data/vendored/facter/lib/facter/zpool_version.rb +10 -0
- data/vendored/hiera/lib/hiera.rb +119 -0
- data/vendored/hiera/lib/hiera/backend.rb +360 -0
- data/vendored/hiera/lib/hiera/backend/json_backend.rb +58 -0
- data/vendored/hiera/lib/hiera/backend/yaml_backend.rb +63 -0
- data/vendored/hiera/lib/hiera/config.rb +97 -0
- data/vendored/hiera/lib/hiera/console_logger.rb +13 -0
- data/vendored/hiera/lib/hiera/error.rb +4 -0
- data/vendored/hiera/lib/hiera/fallback_logger.rb +41 -0
- data/vendored/hiera/lib/hiera/filecache.rb +86 -0
- data/vendored/hiera/lib/hiera/interpolate.rb +121 -0
- data/vendored/hiera/lib/hiera/noop_logger.rb +8 -0
- data/vendored/hiera/lib/hiera/puppet_logger.rb +17 -0
- data/vendored/hiera/lib/hiera/recursive_guard.rb +20 -0
- data/vendored/hiera/lib/hiera/util.rb +65 -0
- data/vendored/hiera/lib/hiera/util/win32.rb +40 -0
- data/vendored/hiera/lib/hiera/version.rb +89 -0
- data/vendored/puppet/lib/hiera/puppet_function.rb +84 -0
- data/vendored/puppet/lib/hiera/scope.rb +61 -0
- data/vendored/puppet/lib/hiera_puppet.rb +79 -0
- data/vendored/puppet/lib/puppet.rb +307 -0
- data/vendored/puppet/lib/puppet/agent.rb +134 -0
- data/vendored/puppet/lib/puppet/agent/disabler.rb +53 -0
- data/vendored/puppet/lib/puppet/agent/locker.rb +53 -0
- data/vendored/puppet/lib/puppet/application.rb +502 -0
- data/vendored/puppet/lib/puppet/application/agent.rb +473 -0
- data/vendored/puppet/lib/puppet/application/apply.rb +356 -0
- data/vendored/puppet/lib/puppet/application/ca.rb +11 -0
- data/vendored/puppet/lib/puppet/application/catalog.rb +4 -0
- data/vendored/puppet/lib/puppet/application/cert.rb +339 -0
- data/vendored/puppet/lib/puppet/application/certificate.rb +17 -0
- data/vendored/puppet/lib/puppet/application/certificate_request.rb +7 -0
- data/vendored/puppet/lib/puppet/application/certificate_revocation_list.rb +7 -0
- data/vendored/puppet/lib/puppet/application/config.rb +5 -0
- data/vendored/puppet/lib/puppet/application/describe.rb +257 -0
- data/vendored/puppet/lib/puppet/application/device.rb +378 -0
- data/vendored/puppet/lib/puppet/application/doc.rb +230 -0
- data/vendored/puppet/lib/puppet/application/epp.rb +5 -0
- data/vendored/puppet/lib/puppet/application/face_base.rb +268 -0
- data/vendored/puppet/lib/puppet/application/facts.rb +9 -0
- data/vendored/puppet/lib/puppet/application/filebucket.rb +300 -0
- data/vendored/puppet/lib/puppet/application/generate.rb +5 -0
- data/vendored/puppet/lib/puppet/application/help.rb +5 -0
- data/vendored/puppet/lib/puppet/application/indirection_base.rb +4 -0
- data/vendored/puppet/lib/puppet/application/key.rb +4 -0
- data/vendored/puppet/lib/puppet/application/lookup.rb +369 -0
- data/vendored/puppet/lib/puppet/application/man.rb +4 -0
- data/vendored/puppet/lib/puppet/application/master.rb +317 -0
- data/vendored/puppet/lib/puppet/application/module.rb +4 -0
- data/vendored/puppet/lib/puppet/application/node.rb +4 -0
- data/vendored/puppet/lib/puppet/application/parser.rb +5 -0
- data/vendored/puppet/lib/puppet/application/plugin.rb +3 -0
- data/vendored/puppet/lib/puppet/application/report.rb +4 -0
- data/vendored/puppet/lib/puppet/application/resource.rb +231 -0
- data/vendored/puppet/lib/puppet/application/script.rb +261 -0
- data/vendored/puppet/lib/puppet/application/status.rb +4 -0
- data/vendored/puppet/lib/puppet/application_support.rb +62 -0
- data/vendored/puppet/lib/puppet/coercion.rb +40 -0
- data/vendored/puppet/lib/puppet/compilable_resource_type.rb +15 -0
- data/vendored/puppet/lib/puppet/configurer.rb +464 -0
- data/vendored/puppet/lib/puppet/configurer/downloader.rb +67 -0
- data/vendored/puppet/lib/puppet/configurer/fact_handler.rb +46 -0
- data/vendored/puppet/lib/puppet/configurer/plugin_handler.rb +49 -0
- data/vendored/puppet/lib/puppet/confine.rb +80 -0
- data/vendored/puppet/lib/puppet/confine/any.rb +26 -0
- data/vendored/puppet/lib/puppet/confine/exists.rb +19 -0
- data/vendored/puppet/lib/puppet/confine/false.rb +19 -0
- data/vendored/puppet/lib/puppet/confine/feature.rb +17 -0
- data/vendored/puppet/lib/puppet/confine/true.rb +20 -0
- data/vendored/puppet/lib/puppet/confine/variable.rb +59 -0
- data/vendored/puppet/lib/puppet/confine_collection.rb +50 -0
- data/vendored/puppet/lib/puppet/confiner.rb +46 -0
- data/vendored/puppet/lib/puppet/context.rb +116 -0
- data/vendored/puppet/lib/puppet/context/trusted_information.rb +76 -0
- data/vendored/puppet/lib/puppet/daemon.rb +195 -0
- data/vendored/puppet/lib/puppet/data_binding.rb +14 -0
- data/vendored/puppet/lib/puppet/datatypes.rb +213 -0
- data/vendored/puppet/lib/puppet/datatypes/error.rb +21 -0
- data/vendored/puppet/lib/puppet/datatypes/impl/error.rb +40 -0
- data/vendored/puppet/lib/puppet/defaults.rb +2071 -0
- data/vendored/puppet/lib/puppet/environments.rb +511 -0
- data/vendored/puppet/lib/puppet/error.rb +110 -0
- data/vendored/puppet/lib/puppet/etc.rb +161 -0
- data/vendored/puppet/lib/puppet/external/dot.rb +319 -0
- data/vendored/puppet/lib/puppet/external/nagios.rb +46 -0
- data/vendored/puppet/lib/puppet/external/nagios/base.rb +472 -0
- data/vendored/puppet/lib/puppet/external/nagios/parser.rb +400 -0
- data/vendored/puppet/lib/puppet/external/pson/common.rb +374 -0
- data/vendored/puppet/lib/puppet/external/pson/pure.rb +15 -0
- data/vendored/puppet/lib/puppet/external/pson/pure/generator.rb +395 -0
- data/vendored/puppet/lib/puppet/external/pson/pure/parser.rb +307 -0
- data/vendored/puppet/lib/puppet/external/pson/version.rb +8 -0
- data/vendored/puppet/lib/puppet/face.rb +12 -0
- data/vendored/puppet/lib/puppet/face/ca.rb +266 -0
- data/vendored/puppet/lib/puppet/face/catalog.rb +130 -0
- data/vendored/puppet/lib/puppet/face/catalog/select.rb +49 -0
- data/vendored/puppet/lib/puppet/face/certificate.rb +165 -0
- data/vendored/puppet/lib/puppet/face/certificate_request.rb +56 -0
- data/vendored/puppet/lib/puppet/face/certificate_revocation_list.rb +56 -0
- data/vendored/puppet/lib/puppet/face/config.rb +210 -0
- data/vendored/puppet/lib/puppet/face/epp.rb +554 -0
- data/vendored/puppet/lib/puppet/face/facts.rb +87 -0
- data/vendored/puppet/lib/puppet/face/generate.rb +64 -0
- data/vendored/puppet/lib/puppet/face/help.rb +201 -0
- data/vendored/puppet/lib/puppet/face/key.rb +16 -0
- data/vendored/puppet/lib/puppet/face/man.rb +145 -0
- data/vendored/puppet/lib/puppet/face/module.rb +19 -0
- data/vendored/puppet/lib/puppet/face/module/build.rb +64 -0
- data/vendored/puppet/lib/puppet/face/module/changes.rb +42 -0
- data/vendored/puppet/lib/puppet/face/module/generate.rb +256 -0
- data/vendored/puppet/lib/puppet/face/module/install.rb +150 -0
- data/vendored/puppet/lib/puppet/face/module/list.rb +268 -0
- data/vendored/puppet/lib/puppet/face/module/search.rb +98 -0
- data/vendored/puppet/lib/puppet/face/module/uninstall.rb +93 -0
- data/vendored/puppet/lib/puppet/face/module/upgrade.rb +91 -0
- data/vendored/puppet/lib/puppet/face/node.rb +43 -0
- data/vendored/puppet/lib/puppet/face/node/clean.rb +96 -0
- data/vendored/puppet/lib/puppet/face/parser.rb +187 -0
- data/vendored/puppet/lib/puppet/face/plugin.rb +56 -0
- data/vendored/puppet/lib/puppet/face/report.rb +54 -0
- data/vendored/puppet/lib/puppet/face/resource.rb +53 -0
- data/vendored/puppet/lib/puppet/face/status.rb +51 -0
- data/vendored/puppet/lib/puppet/feature/base.rb +95 -0
- data/vendored/puppet/lib/puppet/feature/bolt.rb +3 -0
- data/vendored/puppet/lib/puppet/feature/cfpropertylist.rb +3 -0
- data/vendored/puppet/lib/puppet/feature/eventlog.rb +5 -0
- data/vendored/puppet/lib/puppet/feature/hiera_eyaml.rb +3 -0
- data/vendored/puppet/lib/puppet/feature/hocon.rb +3 -0
- data/vendored/puppet/lib/puppet/feature/libuser.rb +8 -0
- data/vendored/puppet/lib/puppet/feature/msgpack.rb +3 -0
- data/vendored/puppet/lib/puppet/feature/pe_license.rb +4 -0
- data/vendored/puppet/lib/puppet/feature/rack.rb +19 -0
- data/vendored/puppet/lib/puppet/feature/selinux.rb +3 -0
- data/vendored/puppet/lib/puppet/feature/ssh.rb +3 -0
- data/vendored/puppet/lib/puppet/feature/telnet.rb +9 -0
- data/vendored/puppet/lib/puppet/feature/zlib.rb +5 -0
- data/vendored/puppet/lib/puppet/file_bucket.rb +4 -0
- data/vendored/puppet/lib/puppet/file_bucket/dipper.rb +173 -0
- data/vendored/puppet/lib/puppet/file_bucket/file.rb +129 -0
- data/vendored/puppet/lib/puppet/file_serving.rb +3 -0
- data/vendored/puppet/lib/puppet/file_serving/base.rb +86 -0
- data/vendored/puppet/lib/puppet/file_serving/configuration.rb +115 -0
- data/vendored/puppet/lib/puppet/file_serving/configuration/parser.rb +137 -0
- data/vendored/puppet/lib/puppet/file_serving/content.rb +43 -0
- data/vendored/puppet/lib/puppet/file_serving/fileset.rb +174 -0
- data/vendored/puppet/lib/puppet/file_serving/http_metadata.rb +46 -0
- data/vendored/puppet/lib/puppet/file_serving/metadata.rb +163 -0
- data/vendored/puppet/lib/puppet/file_serving/mount.rb +39 -0
- data/vendored/puppet/lib/puppet/file_serving/mount/file.rb +121 -0
- data/vendored/puppet/lib/puppet/file_serving/mount/locales.rb +35 -0
- data/vendored/puppet/lib/puppet/file_serving/mount/modules.rb +24 -0
- data/vendored/puppet/lib/puppet/file_serving/mount/pluginfacts.rb +35 -0
- data/vendored/puppet/lib/puppet/file_serving/mount/plugins.rb +35 -0
- data/vendored/puppet/lib/puppet/file_serving/mount/tasks.rb +21 -0
- data/vendored/puppet/lib/puppet/file_serving/terminus_helper.rb +31 -0
- data/vendored/puppet/lib/puppet/file_serving/terminus_selector.rb +32 -0
- data/vendored/puppet/lib/puppet/file_system.rb +404 -0
- data/vendored/puppet/lib/puppet/file_system/file_impl.rb +154 -0
- data/vendored/puppet/lib/puppet/file_system/memory_file.rb +66 -0
- data/vendored/puppet/lib/puppet/file_system/memory_impl.rb +86 -0
- data/vendored/puppet/lib/puppet/file_system/path_pattern.rb +98 -0
- data/vendored/puppet/lib/puppet/file_system/posix.rb +46 -0
- data/vendored/puppet/lib/puppet/file_system/uniquefile.rb +190 -0
- data/vendored/puppet/lib/puppet/file_system/windows.rb +130 -0
- data/vendored/puppet/lib/puppet/forge.rb +242 -0
- data/vendored/puppet/lib/puppet/forge/cache.rb +60 -0
- data/vendored/puppet/lib/puppet/forge/errors.rb +114 -0
- data/vendored/puppet/lib/puppet/forge/repository.rb +155 -0
- data/vendored/puppet/lib/puppet/functions.rb +725 -0
- data/vendored/puppet/lib/puppet/functions/alert.rb +14 -0
- data/vendored/puppet/lib/puppet/functions/all.rb +104 -0
- data/vendored/puppet/lib/puppet/functions/annotate.rb +108 -0
- data/vendored/puppet/lib/puppet/functions/any.rb +109 -0
- data/vendored/puppet/lib/puppet/functions/assert_type.rb +93 -0
- data/vendored/puppet/lib/puppet/functions/binary_file.rb +32 -0
- data/vendored/puppet/lib/puppet/functions/break.rb +51 -0
- data/vendored/puppet/lib/puppet/functions/call.rb +42 -0
- data/vendored/puppet/lib/puppet/functions/contain.rb +55 -0
- data/vendored/puppet/lib/puppet/functions/convert_to.rb +33 -0
- data/vendored/puppet/lib/puppet/functions/crit.rb +14 -0
- data/vendored/puppet/lib/puppet/functions/debug.rb +14 -0
- data/vendored/puppet/lib/puppet/functions/defined.rb +159 -0
- data/vendored/puppet/lib/puppet/functions/dig.rb +47 -0
- data/vendored/puppet/lib/puppet/functions/each.rb +169 -0
- data/vendored/puppet/lib/puppet/functions/emerg.rb +14 -0
- data/vendored/puppet/lib/puppet/functions/empty.rb +79 -0
- data/vendored/puppet/lib/puppet/functions/epp.rb +48 -0
- data/vendored/puppet/lib/puppet/functions/err.rb +14 -0
- data/vendored/puppet/lib/puppet/functions/eyaml_lookup_key.rb +96 -0
- data/vendored/puppet/lib/puppet/functions/filter.rb +143 -0
- data/vendored/puppet/lib/puppet/functions/find_file.rb +44 -0
- data/vendored/puppet/lib/puppet/functions/flatten.rb +64 -0
- data/vendored/puppet/lib/puppet/functions/hiera.rb +88 -0
- data/vendored/puppet/lib/puppet/functions/hiera_array.rb +81 -0
- data/vendored/puppet/lib/puppet/functions/hiera_hash.rb +92 -0
- data/vendored/puppet/lib/puppet/functions/hiera_include.rb +104 -0
- data/vendored/puppet/lib/puppet/functions/hocon_data.rb +41 -0
- data/vendored/puppet/lib/puppet/functions/import.rb +7 -0
- data/vendored/puppet/lib/puppet/functions/include.rb +53 -0
- data/vendored/puppet/lib/puppet/functions/info.rb +14 -0
- data/vendored/puppet/lib/puppet/functions/inline_epp.rb +59 -0
- data/vendored/puppet/lib/puppet/functions/join.rb +56 -0
- data/vendored/puppet/lib/puppet/functions/json_data.rb +33 -0
- data/vendored/puppet/lib/puppet/functions/keys.rb +25 -0
- data/vendored/puppet/lib/puppet/functions/length.rb +44 -0
- data/vendored/puppet/lib/puppet/functions/lest.rb +55 -0
- data/vendored/puppet/lib/puppet/functions/lookup.rb +223 -0
- data/vendored/puppet/lib/puppet/functions/map.rb +136 -0
- data/vendored/puppet/lib/puppet/functions/match.rb +120 -0
- data/vendored/puppet/lib/puppet/functions/module_directory.rb +41 -0
- data/vendored/puppet/lib/puppet/functions/new.rb +1022 -0
- data/vendored/puppet/lib/puppet/functions/next.rb +23 -0
- data/vendored/puppet/lib/puppet/functions/notice.rb +14 -0
- data/vendored/puppet/lib/puppet/functions/reduce.rb +164 -0
- data/vendored/puppet/lib/puppet/functions/regsubst.rb +82 -0
- data/vendored/puppet/lib/puppet/functions/require.rb +77 -0
- data/vendored/puppet/lib/puppet/functions/return.rb +22 -0
- data/vendored/puppet/lib/puppet/functions/reverse_each.rb +94 -0
- data/vendored/puppet/lib/puppet/functions/scanf.rb +44 -0
- data/vendored/puppet/lib/puppet/functions/slice.rb +124 -0
- data/vendored/puppet/lib/puppet/functions/split.rb +49 -0
- data/vendored/puppet/lib/puppet/functions/step.rb +98 -0
- data/vendored/puppet/lib/puppet/functions/strftime.rb +217 -0
- data/vendored/puppet/lib/puppet/functions/then.rb +77 -0
- data/vendored/puppet/lib/puppet/functions/tree_each.rb +200 -0
- data/vendored/puppet/lib/puppet/functions/type.rb +72 -0
- data/vendored/puppet/lib/puppet/functions/unique.rb +132 -0
- data/vendored/puppet/lib/puppet/functions/unwrap.rb +44 -0
- data/vendored/puppet/lib/puppet/functions/values.rb +25 -0
- data/vendored/puppet/lib/puppet/functions/versioncmp.rb +36 -0
- data/vendored/puppet/lib/puppet/functions/warning.rb +14 -0
- data/vendored/puppet/lib/puppet/functions/with.rb +32 -0
- data/vendored/puppet/lib/puppet/functions/yaml_data.rb +42 -0
- data/vendored/puppet/lib/puppet/generate/models/type/property.rb +70 -0
- data/vendored/puppet/lib/puppet/generate/models/type/type.rb +62 -0
- data/vendored/puppet/lib/puppet/generate/type.rb +239 -0
- data/vendored/puppet/lib/puppet/gettext/config.rb +252 -0
- data/vendored/puppet/lib/puppet/gettext/module_translations.rb +42 -0
- data/vendored/puppet/lib/puppet/gettext/stubs.rb +11 -0
- data/vendored/puppet/lib/puppet/graph.rb +11 -0
- data/vendored/puppet/lib/puppet/graph/key.rb +26 -0
- data/vendored/puppet/lib/puppet/graph/prioritizer.rb +29 -0
- data/vendored/puppet/lib/puppet/graph/random_prioritizer.rb +16 -0
- data/vendored/puppet/lib/puppet/graph/rb_tree_map.rb +388 -0
- data/vendored/puppet/lib/puppet/graph/relationship_graph.rb +283 -0
- data/vendored/puppet/lib/puppet/graph/sequential_prioritizer.rb +31 -0
- data/vendored/puppet/lib/puppet/graph/simple_graph.rb +539 -0
- data/vendored/puppet/lib/puppet/graph/title_hash_prioritizer.rb +16 -0
- data/vendored/puppet/lib/puppet/indirector.rb +61 -0
- data/vendored/puppet/lib/puppet/indirector/catalog/compiler.rb +418 -0
- data/vendored/puppet/lib/puppet/indirector/catalog/json.rb +24 -0
- data/vendored/puppet/lib/puppet/indirector/catalog/msgpack.rb +6 -0
- data/vendored/puppet/lib/puppet/indirector/catalog/rest.rb +6 -0
- data/vendored/puppet/lib/puppet/indirector/catalog/store_configs.rb +8 -0
- data/vendored/puppet/lib/puppet/indirector/catalog/yaml.rb +22 -0
- data/vendored/puppet/lib/puppet/indirector/certificate/ca.rb +9 -0
- data/vendored/puppet/lib/puppet/indirector/certificate/disabled_ca.rb +22 -0
- data/vendored/puppet/lib/puppet/indirector/certificate/file.rb +9 -0
- data/vendored/puppet/lib/puppet/indirector/certificate/rest.rb +16 -0
- data/vendored/puppet/lib/puppet/indirector/certificate_request/ca.rb +22 -0
- data/vendored/puppet/lib/puppet/indirector/certificate_request/disabled_ca.rb +22 -0
- data/vendored/puppet/lib/puppet/indirector/certificate_request/file.rb +8 -0
- data/vendored/puppet/lib/puppet/indirector/certificate_request/memory.rb +6 -0
- data/vendored/puppet/lib/puppet/indirector/certificate_request/rest.rb +10 -0
- data/vendored/puppet/lib/puppet/indirector/certificate_revocation_list/ca.rb +8 -0
- data/vendored/puppet/lib/puppet/indirector/certificate_revocation_list/disabled_ca.rb +22 -0
- data/vendored/puppet/lib/puppet/indirector/certificate_revocation_list/file.rb +8 -0
- data/vendored/puppet/lib/puppet/indirector/certificate_revocation_list/rest.rb +22 -0
- data/vendored/puppet/lib/puppet/indirector/certificate_status.rb +4 -0
- data/vendored/puppet/lib/puppet/indirector/certificate_status/file.rb +91 -0
- data/vendored/puppet/lib/puppet/indirector/certificate_status/rest.rb +11 -0
- data/vendored/puppet/lib/puppet/indirector/code.rb +6 -0
- data/vendored/puppet/lib/puppet/indirector/data_binding/hiera.rb +7 -0
- data/vendored/puppet/lib/puppet/indirector/data_binding/none.rb +8 -0
- data/vendored/puppet/lib/puppet/indirector/direct_file_server.rb +17 -0
- data/vendored/puppet/lib/puppet/indirector/envelope.rb +11 -0
- data/vendored/puppet/lib/puppet/indirector/errors.rb +5 -0
- data/vendored/puppet/lib/puppet/indirector/exec.rb +38 -0
- data/vendored/puppet/lib/puppet/indirector/face.rb +153 -0
- data/vendored/puppet/lib/puppet/indirector/facts/facter.rb +88 -0
- data/vendored/puppet/lib/puppet/indirector/facts/memory.rb +9 -0
- data/vendored/puppet/lib/puppet/indirector/facts/network_device.rb +27 -0
- data/vendored/puppet/lib/puppet/indirector/facts/rest.rb +21 -0
- data/vendored/puppet/lib/puppet/indirector/facts/store_configs.rb +11 -0
- data/vendored/puppet/lib/puppet/indirector/facts/yaml.rb +82 -0
- data/vendored/puppet/lib/puppet/indirector/file_bucket_file/file.rb +262 -0
- data/vendored/puppet/lib/puppet/indirector/file_bucket_file/rest.rb +8 -0
- data/vendored/puppet/lib/puppet/indirector/file_bucket_file/selector.rb +53 -0
- data/vendored/puppet/lib/puppet/indirector/file_content.rb +5 -0
- data/vendored/puppet/lib/puppet/indirector/file_content/file.rb +7 -0
- data/vendored/puppet/lib/puppet/indirector/file_content/file_server.rb +7 -0
- data/vendored/puppet/lib/puppet/indirector/file_content/http.rb +17 -0
- data/vendored/puppet/lib/puppet/indirector/file_content/rest.rb +9 -0
- data/vendored/puppet/lib/puppet/indirector/file_content/selector.rb +30 -0
- data/vendored/puppet/lib/puppet/indirector/file_metadata.rb +5 -0
- data/vendored/puppet/lib/puppet/indirector/file_metadata/file.rb +7 -0
- data/vendored/puppet/lib/puppet/indirector/file_metadata/file_server.rb +7 -0
- data/vendored/puppet/lib/puppet/indirector/file_metadata/http.rb +27 -0
- data/vendored/puppet/lib/puppet/indirector/file_metadata/rest.rb +9 -0
- data/vendored/puppet/lib/puppet/indirector/file_metadata/selector.rb +30 -0
- data/vendored/puppet/lib/puppet/indirector/file_server.rb +59 -0
- data/vendored/puppet/lib/puppet/indirector/generic_http.rb +16 -0
- data/vendored/puppet/lib/puppet/indirector/hiera.rb +94 -0
- data/vendored/puppet/lib/puppet/indirector/indirection.rb +344 -0
- data/vendored/puppet/lib/puppet/indirector/json.rb +75 -0
- data/vendored/puppet/lib/puppet/indirector/key/ca.rb +16 -0
- data/vendored/puppet/lib/puppet/indirector/key/disabled_ca.rb +22 -0
- data/vendored/puppet/lib/puppet/indirector/key/file.rb +50 -0
- data/vendored/puppet/lib/puppet/indirector/key/memory.rb +6 -0
- data/vendored/puppet/lib/puppet/indirector/ldap.rb +80 -0
- data/vendored/puppet/lib/puppet/indirector/memory.rb +34 -0
- data/vendored/puppet/lib/puppet/indirector/msgpack.rb +83 -0
- data/vendored/puppet/lib/puppet/indirector/node/exec.rb +71 -0
- data/vendored/puppet/lib/puppet/indirector/node/ldap.rb +275 -0
- data/vendored/puppet/lib/puppet/indirector/node/memory.rb +10 -0
- data/vendored/puppet/lib/puppet/indirector/node/msgpack.rb +7 -0
- data/vendored/puppet/lib/puppet/indirector/node/plain.rb +21 -0
- data/vendored/puppet/lib/puppet/indirector/node/rest.rb +7 -0
- data/vendored/puppet/lib/puppet/indirector/node/store_configs.rb +8 -0
- data/vendored/puppet/lib/puppet/indirector/node/write_only_yaml.rb +39 -0
- data/vendored/puppet/lib/puppet/indirector/node/yaml.rb +13 -0
- data/vendored/puppet/lib/puppet/indirector/none.rb +9 -0
- data/vendored/puppet/lib/puppet/indirector/plain.rb +9 -0
- data/vendored/puppet/lib/puppet/indirector/report/msgpack.rb +11 -0
- data/vendored/puppet/lib/puppet/indirector/report/processor.rb +59 -0
- data/vendored/puppet/lib/puppet/indirector/report/rest.rb +28 -0
- data/vendored/puppet/lib/puppet/indirector/report/yaml.rb +11 -0
- data/vendored/puppet/lib/puppet/indirector/request.rb +278 -0
- data/vendored/puppet/lib/puppet/indirector/resource/ral.rb +63 -0
- data/vendored/puppet/lib/puppet/indirector/resource/store_configs.rb +12 -0
- data/vendored/puppet/lib/puppet/indirector/resource/validator.rb +8 -0
- data/vendored/puppet/lib/puppet/indirector/rest.rb +350 -0
- data/vendored/puppet/lib/puppet/indirector/ssl_file.rb +201 -0
- data/vendored/puppet/lib/puppet/indirector/status.rb +3 -0
- data/vendored/puppet/lib/puppet/indirector/status/local.rb +12 -0
- data/vendored/puppet/lib/puppet/indirector/status/rest.rb +9 -0
- data/vendored/puppet/lib/puppet/indirector/store_configs.rb +30 -0
- data/vendored/puppet/lib/puppet/indirector/terminus.rb +169 -0
- data/vendored/puppet/lib/puppet/indirector/yaml.rb +63 -0
- data/vendored/puppet/lib/puppet/info_service.rb +17 -0
- data/vendored/puppet/lib/puppet/info_service/class_information_service.rb +110 -0
- data/vendored/puppet/lib/puppet/info_service/task_information_service.rb +32 -0
- data/vendored/puppet/lib/puppet/interface.rb +237 -0
- data/vendored/puppet/lib/puppet/interface/action.rb +402 -0
- data/vendored/puppet/lib/puppet/interface/action_builder.rb +166 -0
- data/vendored/puppet/lib/puppet/interface/action_manager.rb +97 -0
- data/vendored/puppet/lib/puppet/interface/documentation.rb +353 -0
- data/vendored/puppet/lib/puppet/interface/face_collection.rb +132 -0
- data/vendored/puppet/lib/puppet/interface/option.rb +171 -0
- data/vendored/puppet/lib/puppet/interface/option_builder.rb +105 -0
- data/vendored/puppet/lib/puppet/interface/option_manager.rb +104 -0
- data/vendored/puppet/lib/puppet/loaders.rb +27 -0
- data/vendored/puppet/lib/puppet/metatype/manager.rb +199 -0
- data/vendored/puppet/lib/puppet/module.rb +467 -0
- data/vendored/puppet/lib/puppet/module/task.rb +90 -0
- data/vendored/puppet/lib/puppet/module_tool.rb +196 -0
- data/vendored/puppet/lib/puppet/module_tool/applications.rb +14 -0
- data/vendored/puppet/lib/puppet/module_tool/applications/application.rb +90 -0
- data/vendored/puppet/lib/puppet/module_tool/applications/builder.rb +152 -0
- data/vendored/puppet/lib/puppet/module_tool/applications/checksummer.rb +62 -0
- data/vendored/puppet/lib/puppet/module_tool/applications/installer.rb +355 -0
- data/vendored/puppet/lib/puppet/module_tool/applications/searcher.rb +29 -0
- data/vendored/puppet/lib/puppet/module_tool/applications/uninstaller.rb +121 -0
- data/vendored/puppet/lib/puppet/module_tool/applications/unpacker.rb +100 -0
- data/vendored/puppet/lib/puppet/module_tool/applications/upgrader.rb +281 -0
- data/vendored/puppet/lib/puppet/module_tool/checksums.rb +49 -0
- data/vendored/puppet/lib/puppet/module_tool/contents_description.rb +88 -0
- data/vendored/puppet/lib/puppet/module_tool/dependency.rb +41 -0
- data/vendored/puppet/lib/puppet/module_tool/errors.rb +11 -0
- data/vendored/puppet/lib/puppet/module_tool/errors/base.rb +15 -0
- data/vendored/puppet/lib/puppet/module_tool/errors/installer.rb +93 -0
- data/vendored/puppet/lib/puppet/module_tool/errors/shared.rb +195 -0
- data/vendored/puppet/lib/puppet/module_tool/errors/uninstaller.rb +50 -0
- data/vendored/puppet/lib/puppet/module_tool/errors/upgrader.rb +63 -0
- data/vendored/puppet/lib/puppet/module_tool/install_directory.rb +45 -0
- data/vendored/puppet/lib/puppet/module_tool/installed_modules.rb +96 -0
- data/vendored/puppet/lib/puppet/module_tool/local_tarball.rb +90 -0
- data/vendored/puppet/lib/puppet/module_tool/metadata.rb +223 -0
- data/vendored/puppet/lib/puppet/module_tool/shared_behaviors.rb +180 -0
- data/vendored/puppet/lib/puppet/module_tool/skeleton/templates/generator/spec/spec_helper.rb +1 -0
- data/vendored/puppet/lib/puppet/module_tool/tar.rb +18 -0
- data/vendored/puppet/lib/puppet/module_tool/tar/gnu.rb +19 -0
- data/vendored/puppet/lib/puppet/module_tool/tar/mini.rb +106 -0
- data/vendored/puppet/lib/puppet/network.rb +3 -0
- data/vendored/puppet/lib/puppet/network/auth_config_parser.rb +90 -0
- data/vendored/puppet/lib/puppet/network/authconfig.rb +112 -0
- data/vendored/puppet/lib/puppet/network/authorization.rb +41 -0
- data/vendored/puppet/lib/puppet/network/authstore.rb +282 -0
- data/vendored/puppet/lib/puppet/network/client_request.rb +29 -0
- data/vendored/puppet/lib/puppet/network/format.rb +110 -0
- data/vendored/puppet/lib/puppet/network/format_handler.rb +108 -0
- data/vendored/puppet/lib/puppet/network/format_support.rb +134 -0
- data/vendored/puppet/lib/puppet/network/formats.rb +171 -0
- data/vendored/puppet/lib/puppet/network/http.rb +30 -0
- data/vendored/puppet/lib/puppet/network/http/api.rb +44 -0
- data/vendored/puppet/lib/puppet/network/http/api/ca.rb +2 -0
- data/vendored/puppet/lib/puppet/network/http/api/ca/v1.rb +11 -0
- data/vendored/puppet/lib/puppet/network/http/api/indirected_routes.rb +279 -0
- data/vendored/puppet/lib/puppet/network/http/api/indirection_type.rb +32 -0
- data/vendored/puppet/lib/puppet/network/http/api/master.rb +2 -0
- data/vendored/puppet/lib/puppet/network/http/api/master/v3.rb +28 -0
- data/vendored/puppet/lib/puppet/network/http/api/master/v3/authorization.rb +18 -0
- data/vendored/puppet/lib/puppet/network/http/api/master/v3/environment.rb +85 -0
- data/vendored/puppet/lib/puppet/network/http/api/master/v3/environments.rb +35 -0
- data/vendored/puppet/lib/puppet/network/http/compression.rb +120 -0
- data/vendored/puppet/lib/puppet/network/http/connection.rb +332 -0
- data/vendored/puppet/lib/puppet/network/http/error.rb +73 -0
- data/vendored/puppet/lib/puppet/network/http/factory.rb +56 -0
- data/vendored/puppet/lib/puppet/network/http/handler.rb +183 -0
- data/vendored/puppet/lib/puppet/network/http/issues.rb +12 -0
- data/vendored/puppet/lib/puppet/network/http/memory_response.rb +13 -0
- data/vendored/puppet/lib/puppet/network/http/nocache_pool.rb +21 -0
- data/vendored/puppet/lib/puppet/network/http/pool.rb +129 -0
- data/vendored/puppet/lib/puppet/network/http/rack.rb +33 -0
- data/vendored/puppet/lib/puppet/network/http/rack/rest.rb +162 -0
- data/vendored/puppet/lib/puppet/network/http/request.rb +70 -0
- data/vendored/puppet/lib/puppet/network/http/response.rb +23 -0
- data/vendored/puppet/lib/puppet/network/http/route.rb +100 -0
- data/vendored/puppet/lib/puppet/network/http/session.rb +17 -0
- data/vendored/puppet/lib/puppet/network/http/site.rb +39 -0
- data/vendored/puppet/lib/puppet/network/http/webrick.rb +124 -0
- data/vendored/puppet/lib/puppet/network/http/webrick/rest.rb +114 -0
- data/vendored/puppet/lib/puppet/network/http_pool.rb +61 -0
- data/vendored/puppet/lib/puppet/network/resolver.rb +85 -0
- data/vendored/puppet/lib/puppet/network/rest_controller.rb +2 -0
- data/vendored/puppet/lib/puppet/network/rights.rb +209 -0
- data/vendored/puppet/lib/puppet/network/server.rb +39 -0
- data/vendored/puppet/lib/puppet/node.rb +282 -0
- data/vendored/puppet/lib/puppet/node/environment.rb +586 -0
- data/vendored/puppet/lib/puppet/node/facts.rb +137 -0
- data/vendored/puppet/lib/puppet/parameter.rb +567 -0
- data/vendored/puppet/lib/puppet/parameter/boolean.rb +15 -0
- data/vendored/puppet/lib/puppet/parameter/package_options.rb +31 -0
- data/vendored/puppet/lib/puppet/parameter/path.rb +57 -0
- data/vendored/puppet/lib/puppet/parameter/value.rb +91 -0
- data/vendored/puppet/lib/puppet/parameter/value_collection.rb +212 -0
- data/vendored/puppet/lib/puppet/parser.rb +20 -0
- data/vendored/puppet/lib/puppet/parser/abstract_compiler.rb +36 -0
- data/vendored/puppet/lib/puppet/parser/ast.rb +65 -0
- data/vendored/puppet/lib/puppet/parser/ast/block_expression.rb +15 -0
- data/vendored/puppet/lib/puppet/parser/ast/branch.rb +19 -0
- data/vendored/puppet/lib/puppet/parser/ast/hostclass.rb +27 -0
- data/vendored/puppet/lib/puppet/parser/ast/leaf.rb +75 -0
- data/vendored/puppet/lib/puppet/parser/ast/node.rb +17 -0
- data/vendored/puppet/lib/puppet/parser/ast/pops_bridge.rb +273 -0
- data/vendored/puppet/lib/puppet/parser/ast/resource.rb +66 -0
- data/vendored/puppet/lib/puppet/parser/ast/resource_instance.rb +10 -0
- data/vendored/puppet/lib/puppet/parser/ast/resourceparam.rb +31 -0
- data/vendored/puppet/lib/puppet/parser/ast/top_level_construct.rb +4 -0
- data/vendored/puppet/lib/puppet/parser/compiler.rb +797 -0
- data/vendored/puppet/lib/puppet/parser/compiler/catalog_validator.rb +33 -0
- data/vendored/puppet/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +64 -0
- data/vendored/puppet/lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb +57 -0
- data/vendored/puppet/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +20 -0
- data/vendored/puppet/lib/puppet/parser/e4_parser_adapter.rb +60 -0
- data/vendored/puppet/lib/puppet/parser/environment_compiler.rb +199 -0
- data/vendored/puppet/lib/puppet/parser/files.rb +92 -0
- data/vendored/puppet/lib/puppet/parser/functions.rb +277 -0
- data/vendored/puppet/lib/puppet/parser/functions/assert_type.rb +60 -0
- data/vendored/puppet/lib/puppet/parser/functions/binary_file.rb +24 -0
- data/vendored/puppet/lib/puppet/parser/functions/break.rb +39 -0
- data/vendored/puppet/lib/puppet/parser/functions/contain.rb +30 -0
- data/vendored/puppet/lib/puppet/parser/functions/create_resources.rb +112 -0
- data/vendored/puppet/lib/puppet/parser/functions/defined.rb +107 -0
- data/vendored/puppet/lib/puppet/parser/functions/dig.rb +38 -0
- data/vendored/puppet/lib/puppet/parser/functions/digest.rb +5 -0
- data/vendored/puppet/lib/puppet/parser/functions/each.rb +104 -0
- data/vendored/puppet/lib/puppet/parser/functions/epp.rb +39 -0
- data/vendored/puppet/lib/puppet/parser/functions/fail.rb +4 -0
- data/vendored/puppet/lib/puppet/parser/functions/file.rb +33 -0
- data/vendored/puppet/lib/puppet/parser/functions/filter.rb +78 -0
- data/vendored/puppet/lib/puppet/parser/functions/find_file.rb +28 -0
- data/vendored/puppet/lib/puppet/parser/functions/fqdn_rand.rb +36 -0
- data/vendored/puppet/lib/puppet/parser/functions/generate.rb +36 -0
- data/vendored/puppet/lib/puppet/parser/functions/hiera.rb +103 -0
- data/vendored/puppet/lib/puppet/parser/functions/hiera_array.rb +92 -0
- data/vendored/puppet/lib/puppet/parser/functions/hiera_hash.rb +102 -0
- data/vendored/puppet/lib/puppet/parser/functions/hiera_include.rb +102 -0
- data/vendored/puppet/lib/puppet/parser/functions/include.rb +34 -0
- data/vendored/puppet/lib/puppet/parser/functions/inline_epp.rb +51 -0
- data/vendored/puppet/lib/puppet/parser/functions/inline_template.rb +26 -0
- data/vendored/puppet/lib/puppet/parser/functions/lest.rb +49 -0
- data/vendored/puppet/lib/puppet/parser/functions/lookup.rb +132 -0
- data/vendored/puppet/lib/puppet/parser/functions/map.rb +76 -0
- data/vendored/puppet/lib/puppet/parser/functions/match.rb +43 -0
- data/vendored/puppet/lib/puppet/parser/functions/md5.rb +5 -0
- data/vendored/puppet/lib/puppet/parser/functions/new.rb +991 -0
- data/vendored/puppet/lib/puppet/parser/functions/next.rb +38 -0
- data/vendored/puppet/lib/puppet/parser/functions/realize.rb +20 -0
- data/vendored/puppet/lib/puppet/parser/functions/reduce.rb +137 -0
- data/vendored/puppet/lib/puppet/parser/functions/regsubst.rb +62 -0
- data/vendored/puppet/lib/puppet/parser/functions/require.rb +40 -0
- data/vendored/puppet/lib/puppet/parser/functions/return.rb +71 -0
- data/vendored/puppet/lib/puppet/parser/functions/reverse_each.rb +83 -0
- data/vendored/puppet/lib/puppet/parser/functions/scanf.rb +38 -0
- data/vendored/puppet/lib/puppet/parser/functions/sha1.rb +5 -0
- data/vendored/puppet/lib/puppet/parser/functions/sha256.rb +5 -0
- data/vendored/puppet/lib/puppet/parser/functions/shellquote.rb +61 -0
- data/vendored/puppet/lib/puppet/parser/functions/slice.rb +39 -0
- data/vendored/puppet/lib/puppet/parser/functions/split.rb +28 -0
- data/vendored/puppet/lib/puppet/parser/functions/sprintf.rb +50 -0
- data/vendored/puppet/lib/puppet/parser/functions/step.rb +84 -0
- data/vendored/puppet/lib/puppet/parser/functions/strftime.rb +185 -0
- data/vendored/puppet/lib/puppet/parser/functions/tag.rb +12 -0
- data/vendored/puppet/lib/puppet/parser/functions/tagged.rb +24 -0
- data/vendored/puppet/lib/puppet/parser/functions/template.rb +39 -0
- data/vendored/puppet/lib/puppet/parser/functions/then.rb +73 -0
- data/vendored/puppet/lib/puppet/parser/functions/type.rb +53 -0
- data/vendored/puppet/lib/puppet/parser/functions/versioncmp.rb +30 -0
- data/vendored/puppet/lib/puppet/parser/functions/with.rb +28 -0
- data/vendored/puppet/lib/puppet/parser/parser_factory.rb +30 -0
- data/vendored/puppet/lib/puppet/parser/relationship.rb +83 -0
- data/vendored/puppet/lib/puppet/parser/resource.rb +417 -0
- data/vendored/puppet/lib/puppet/parser/resource/param.rb +22 -0
- data/vendored/puppet/lib/puppet/parser/scope.rb +1125 -0
- data/vendored/puppet/lib/puppet/parser/script_compiler.rb +118 -0
- data/vendored/puppet/lib/puppet/parser/templatewrapper.rb +102 -0
- data/vendored/puppet/lib/puppet/parser/type_loader.rb +149 -0
- data/vendored/puppet/lib/puppet/plugins.rb +9 -0
- data/vendored/puppet/lib/puppet/plugins/configuration.rb +25 -0
- data/vendored/puppet/lib/puppet/plugins/syntax_checkers.rb +98 -0
- data/vendored/puppet/lib/puppet/pops.rb +120 -0
- data/vendored/puppet/lib/puppet/pops/adaptable.rb +206 -0
- data/vendored/puppet/lib/puppet/pops/adapters.rb +138 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/access_operator.rb +719 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/callable_signature.rb +107 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/closure.rb +373 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/collector_transformer.rb +234 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/collectors/abstract_collector.rb +86 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/collectors/catalog_collector.rb +29 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/collectors/exported_collector.rb +69 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/collectors/fixed_set_collector.rb +37 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/compare_operator.rb +252 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/epp_evaluator.rb +120 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/evaluator_impl.rb +1284 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/external_syntax_support.rb +45 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/json_strict_literal_evaluator.rb +82 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/literal_evaluator.rb +87 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/puppet_proc.rb +69 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/relationship_operator.rb +185 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/runtime3_converter.rb +202 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/runtime3_resource_support.rb +117 -0
- data/vendored/puppet/lib/puppet/pops/evaluator/runtime3_support.rb +540 -0
- data/vendored/puppet/lib/puppet/pops/functions/dispatch.rb +101 -0
- data/vendored/puppet/lib/puppet/pops/functions/dispatcher.rb +71 -0
- data/vendored/puppet/lib/puppet/pops/functions/function.rb +141 -0
- data/vendored/puppet/lib/puppet/pops/issue_reporter.rb +137 -0
- data/vendored/puppet/lib/puppet/pops/issues.rb +901 -0
- data/vendored/puppet/lib/puppet/pops/label_provider.rb +90 -0
- data/vendored/puppet/lib/puppet/pops/loader/base_loader.rb +166 -0
- data/vendored/puppet/lib/puppet/pops/loader/dependency_loader.rb +92 -0
- data/vendored/puppet/lib/puppet/pops/loader/gem_support.rb +49 -0
- data/vendored/puppet/lib/puppet/pops/loader/loader.rb +209 -0
- data/vendored/puppet/lib/puppet/pops/loader/loader_paths.rb +375 -0
- data/vendored/puppet/lib/puppet/pops/loader/module_loaders.rb +523 -0
- data/vendored/puppet/lib/puppet/pops/loader/null_loader.rb +60 -0
- data/vendored/puppet/lib/puppet/pops/loader/predefined_loader.rb +24 -0
- data/vendored/puppet/lib/puppet/pops/loader/puppet_function_instantiator.rb +84 -0
- data/vendored/puppet/lib/puppet/pops/loader/puppet_plan_instantiator.rb +84 -0
- data/vendored/puppet/lib/puppet/pops/loader/puppet_resource_type_impl_instantiator.rb +79 -0
- data/vendored/puppet/lib/puppet/pops/loader/ruby_data_type_instantiator.rb +39 -0
- data/vendored/puppet/lib/puppet/pops/loader/ruby_function_instantiator.rb +45 -0
- data/vendored/puppet/lib/puppet/pops/loader/runtime3_type_loader.rb +101 -0
- data/vendored/puppet/lib/puppet/pops/loader/simple_environment_loader.rb +20 -0
- data/vendored/puppet/lib/puppet/pops/loader/static_loader.rb +163 -0
- data/vendored/puppet/lib/puppet/pops/loader/task_instantiator.rb +69 -0
- data/vendored/puppet/lib/puppet/pops/loader/type_definition_instantiator.rb +100 -0
- data/vendored/puppet/lib/puppet/pops/loader/typed_name.rb +54 -0
- data/vendored/puppet/lib/puppet/pops/loader/uri_helper.rb +22 -0
- data/vendored/puppet/lib/puppet/pops/loaders.rb +545 -0
- data/vendored/puppet/lib/puppet/pops/lookup.rb +96 -0
- data/vendored/puppet/lib/puppet/pops/lookup/configured_data_provider.rb +93 -0
- data/vendored/puppet/lib/puppet/pops/lookup/context.rb +200 -0
- data/vendored/puppet/lib/puppet/pops/lookup/data_adapter.rb +27 -0
- data/vendored/puppet/lib/puppet/pops/lookup/data_dig_function_provider.rb +145 -0
- data/vendored/puppet/lib/puppet/pops/lookup/data_hash_function_provider.rb +126 -0
- data/vendored/puppet/lib/puppet/pops/lookup/data_provider.rb +92 -0
- data/vendored/puppet/lib/puppet/pops/lookup/environment_data_provider.rb +35 -0
- data/vendored/puppet/lib/puppet/pops/lookup/explainer.rb +595 -0
- data/vendored/puppet/lib/puppet/pops/lookup/function_provider.rb +110 -0
- data/vendored/puppet/lib/puppet/pops/lookup/global_data_provider.rb +75 -0
- data/vendored/puppet/lib/puppet/pops/lookup/hiera_config.rb +761 -0
- data/vendored/puppet/lib/puppet/pops/lookup/interpolation.rb +154 -0
- data/vendored/puppet/lib/puppet/pops/lookup/invocation.rb +261 -0
- data/vendored/puppet/lib/puppet/pops/lookup/location_resolver.rb +99 -0
- data/vendored/puppet/lib/puppet/pops/lookup/lookup_adapter.rb +471 -0
- data/vendored/puppet/lib/puppet/pops/lookup/lookup_key.rb +99 -0
- data/vendored/puppet/lib/puppet/pops/lookup/lookup_key_function_provider.rb +92 -0
- data/vendored/puppet/lib/puppet/pops/lookup/module_data_provider.rb +89 -0
- data/vendored/puppet/lib/puppet/pops/lookup/sub_lookup.rb +92 -0
- data/vendored/puppet/lib/puppet/pops/merge_strategy.rb +437 -0
- data/vendored/puppet/lib/puppet/pops/migration/migration_checker.rb +58 -0
- data/vendored/puppet/lib/puppet/pops/model/ast.rb +4870 -0
- data/vendored/puppet/lib/puppet/pops/model/ast_transformer.rb +131 -0
- data/vendored/puppet/lib/puppet/pops/model/factory.rb +1150 -0
- data/vendored/puppet/lib/puppet/pops/model/model_label_provider.rb +132 -0
- data/vendored/puppet/lib/puppet/pops/model/model_tree_dumper.rb +467 -0
- data/vendored/puppet/lib/puppet/pops/model/pn_transformer.rb +400 -0
- data/vendored/puppet/lib/puppet/pops/model/tree_dumper.rb +59 -0
- data/vendored/puppet/lib/puppet/pops/parser/code_merger.rb +29 -0
- data/vendored/puppet/lib/puppet/pops/parser/eparser.rb +3315 -0
- data/vendored/puppet/lib/puppet/pops/parser/epp_parser.rb +51 -0
- data/vendored/puppet/lib/puppet/pops/parser/epp_support.rb +260 -0
- data/vendored/puppet/lib/puppet/pops/parser/evaluating_parser.rb +165 -0
- data/vendored/puppet/lib/puppet/pops/parser/heredoc_support.rb +143 -0
- data/vendored/puppet/lib/puppet/pops/parser/interpolation_support.rb +244 -0
- data/vendored/puppet/lib/puppet/pops/parser/lexer2.rb +772 -0
- data/vendored/puppet/lib/puppet/pops/parser/lexer_support.rb +221 -0
- data/vendored/puppet/lib/puppet/pops/parser/locatable.rb +23 -0
- data/vendored/puppet/lib/puppet/pops/parser/locator.rb +336 -0
- data/vendored/puppet/lib/puppet/pops/parser/parser_support.rb +247 -0
- data/vendored/puppet/lib/puppet/pops/parser/pn_parser.rb +316 -0
- data/vendored/puppet/lib/puppet/pops/parser/slurp_support.rb +117 -0
- data/vendored/puppet/lib/puppet/pops/patterns.rb +60 -0
- data/vendored/puppet/lib/puppet/pops/pcore.rb +147 -0
- data/vendored/puppet/lib/puppet/pops/pn.rb +236 -0
- data/vendored/puppet/lib/puppet/pops/puppet_stack.rb +43 -0
- data/vendored/puppet/lib/puppet/pops/resource/param.rb +55 -0
- data/vendored/puppet/lib/puppet/pops/resource/resource_type_impl.rb +314 -0
- data/vendored/puppet/lib/puppet/pops/semantic_error.rb +29 -0
- data/vendored/puppet/lib/puppet/pops/serialization.rb +41 -0
- data/vendored/puppet/lib/puppet/pops/serialization/abstract_reader.rb +180 -0
- data/vendored/puppet/lib/puppet/pops/serialization/abstract_writer.rb +222 -0
- data/vendored/puppet/lib/puppet/pops/serialization/deserializer.rb +80 -0
- data/vendored/puppet/lib/puppet/pops/serialization/extension.rb +158 -0
- data/vendored/puppet/lib/puppet/pops/serialization/from_data_converter.rb +223 -0
- data/vendored/puppet/lib/puppet/pops/serialization/instance_reader.rb +19 -0
- data/vendored/puppet/lib/puppet/pops/serialization/instance_writer.rb +14 -0
- data/vendored/puppet/lib/puppet/pops/serialization/json.rb +297 -0
- data/vendored/puppet/lib/puppet/pops/serialization/json_path.rb +127 -0
- data/vendored/puppet/lib/puppet/pops/serialization/object.rb +70 -0
- data/vendored/puppet/lib/puppet/pops/serialization/serializer.rb +140 -0
- data/vendored/puppet/lib/puppet/pops/serialization/time_factory.rb +67 -0
- data/vendored/puppet/lib/puppet/pops/serialization/to_data_converter.rb +305 -0
- data/vendored/puppet/lib/puppet/pops/time/timespan.rb +718 -0
- data/vendored/puppet/lib/puppet/pops/time/timestamp.rb +160 -0
- data/vendored/puppet/lib/puppet/pops/types/annotatable.rb +36 -0
- data/vendored/puppet/lib/puppet/pops/types/annotation.rb +71 -0
- data/vendored/puppet/lib/puppet/pops/types/class_loader.rb +132 -0
- data/vendored/puppet/lib/puppet/pops/types/enumeration.rb +16 -0
- data/vendored/puppet/lib/puppet/pops/types/implementation_registry.rb +134 -0
- data/vendored/puppet/lib/puppet/pops/types/iterable.rb +339 -0
- data/vendored/puppet/lib/puppet/pops/types/p_binary_type.rb +233 -0
- data/vendored/puppet/lib/puppet/pops/types/p_init_type.rb +238 -0
- data/vendored/puppet/lib/puppet/pops/types/p_meta_type.rb +94 -0
- data/vendored/puppet/lib/puppet/pops/types/p_object_type.rb +1114 -0
- data/vendored/puppet/lib/puppet/pops/types/p_object_type_extension.rb +218 -0
- data/vendored/puppet/lib/puppet/pops/types/p_runtime_type.rb +115 -0
- data/vendored/puppet/lib/puppet/pops/types/p_sem_ver_range_type.rb +190 -0
- data/vendored/puppet/lib/puppet/pops/types/p_sem_ver_type.rb +149 -0
- data/vendored/puppet/lib/puppet/pops/types/p_sensitive_type.rb +73 -0
- data/vendored/puppet/lib/puppet/pops/types/p_timespan_type.rb +192 -0
- data/vendored/puppet/lib/puppet/pops/types/p_timestamp_type.rb +73 -0
- data/vendored/puppet/lib/puppet/pops/types/p_type_set_type.rb +383 -0
- data/vendored/puppet/lib/puppet/pops/types/p_uri_type.rb +190 -0
- data/vendored/puppet/lib/puppet/pops/types/puppet_object.rb +40 -0
- data/vendored/puppet/lib/puppet/pops/types/recursion_guard.rb +136 -0
- data/vendored/puppet/lib/puppet/pops/types/ruby_generator.rb +472 -0
- data/vendored/puppet/lib/puppet/pops/types/ruby_method.rb +31 -0
- data/vendored/puppet/lib/puppet/pops/types/string_converter.rb +1123 -0
- data/vendored/puppet/lib/puppet/pops/types/tree_iterators.rb +254 -0
- data/vendored/puppet/lib/puppet/pops/types/type_acceptor.rb +25 -0
- data/vendored/puppet/lib/puppet/pops/types/type_asserter.rb +47 -0
- data/vendored/puppet/lib/puppet/pops/types/type_assertion_error.rb +27 -0
- data/vendored/puppet/lib/puppet/pops/types/type_calculator.rb +809 -0
- data/vendored/puppet/lib/puppet/pops/types/type_conversion_error.rb +15 -0
- data/vendored/puppet/lib/puppet/pops/types/type_factory.rb +614 -0
- data/vendored/puppet/lib/puppet/pops/types/type_formatter.rb +802 -0
- data/vendored/puppet/lib/puppet/pops/types/type_mismatch_describer.rb +1075 -0
- data/vendored/puppet/lib/puppet/pops/types/type_parser.rb +685 -0
- data/vendored/puppet/lib/puppet/pops/types/type_set_reference.rb +59 -0
- data/vendored/puppet/lib/puppet/pops/types/type_with_members.rb +43 -0
- data/vendored/puppet/lib/puppet/pops/types/types.rb +3650 -0
- data/vendored/puppet/lib/puppet/pops/utils.rb +119 -0
- data/vendored/puppet/lib/puppet/pops/validation.rb +466 -0
- data/vendored/puppet/lib/puppet/pops/validation/checker4_0.rb +998 -0
- data/vendored/puppet/lib/puppet/pops/validation/tasks_checker.rb +60 -0
- data/vendored/puppet/lib/puppet/pops/validation/validator_factory_4_0.rb +43 -0
- data/vendored/puppet/lib/puppet/pops/visitable.rb +6 -0
- data/vendored/puppet/lib/puppet/pops/visitor.rb +116 -0
- data/vendored/puppet/lib/puppet/property.rb +608 -0
- data/vendored/puppet/lib/puppet/property/boolean.rb +7 -0
- data/vendored/puppet/lib/puppet/property/ensure.rb +105 -0
- data/vendored/puppet/lib/puppet/property/keyvalue.rb +95 -0
- data/vendored/puppet/lib/puppet/property/list.rb +69 -0
- data/vendored/puppet/lib/puppet/property/ordered_list.rb +29 -0
- data/vendored/puppet/lib/puppet/provider.rb +613 -0
- data/vendored/puppet/lib/puppet/provider/aixobject.rb +392 -0
- data/vendored/puppet/lib/puppet/provider/augeas/augeas.rb +566 -0
- data/vendored/puppet/lib/puppet/provider/cisco.rb +9 -0
- data/vendored/puppet/lib/puppet/provider/command.rb +25 -0
- data/vendored/puppet/lib/puppet/provider/computer/computer.rb +20 -0
- data/vendored/puppet/lib/puppet/provider/confine.rb +6 -0
- data/vendored/puppet/lib/puppet/provider/cron/crontab.rb +297 -0
- data/vendored/puppet/lib/puppet/provider/exec.rb +96 -0
- data/vendored/puppet/lib/puppet/provider/exec/posix.rb +48 -0
- data/vendored/puppet/lib/puppet/provider/exec/shell.rb +25 -0
- data/vendored/puppet/lib/puppet/provider/exec/windows.rb +55 -0
- data/vendored/puppet/lib/puppet/provider/file/posix.rb +136 -0
- data/vendored/puppet/lib/puppet/provider/file/windows.rb +104 -0
- data/vendored/puppet/lib/puppet/provider/group/aix.rb +143 -0
- data/vendored/puppet/lib/puppet/provider/group/directoryservice.rb +22 -0
- data/vendored/puppet/lib/puppet/provider/group/groupadd.rb +111 -0
- data/vendored/puppet/lib/puppet/provider/group/ldap.rb +45 -0
- data/vendored/puppet/lib/puppet/provider/group/pw.rb +49 -0
- data/vendored/puppet/lib/puppet/provider/group/windows_adsi.rb +106 -0
- data/vendored/puppet/lib/puppet/provider/host/parsed.rb +46 -0
- data/vendored/puppet/lib/puppet/provider/interface/cisco.rb +27 -0
- data/vendored/puppet/lib/puppet/provider/ldap.rb +137 -0
- data/vendored/puppet/lib/puppet/provider/macauthorization/macauthorization.rb +298 -0
- data/vendored/puppet/lib/puppet/provider/mailalias/aliases.rb +50 -0
- data/vendored/puppet/lib/puppet/provider/maillist/mailman.rb +108 -0
- data/vendored/puppet/lib/puppet/provider/mcx/mcxcontent.rb +173 -0
- data/vendored/puppet/lib/puppet/provider/mount.rb +76 -0
- data/vendored/puppet/lib/puppet/provider/mount/parsed.rb +282 -0
- data/vendored/puppet/lib/puppet/provider/naginator.rb +63 -0
- data/vendored/puppet/lib/puppet/provider/nameservice.rb +325 -0
- data/vendored/puppet/lib/puppet/provider/nameservice/directoryservice.rb +508 -0
- data/vendored/puppet/lib/puppet/provider/nameservice/objectadd.rb +22 -0
- data/vendored/puppet/lib/puppet/provider/nameservice/pw.rb +21 -0
- data/vendored/puppet/lib/puppet/provider/network_device.rb +72 -0
- data/vendored/puppet/lib/puppet/provider/package.rb +56 -0
- data/vendored/puppet/lib/puppet/provider/package/aix.rb +152 -0
- data/vendored/puppet/lib/puppet/provider/package/appdmg.rb +109 -0
- data/vendored/puppet/lib/puppet/provider/package/apple.rb +46 -0
- data/vendored/puppet/lib/puppet/provider/package/apt.rb +116 -0
- data/vendored/puppet/lib/puppet/provider/package/aptitude.rb +29 -0
- data/vendored/puppet/lib/puppet/provider/package/aptrpm.rb +83 -0
- data/vendored/puppet/lib/puppet/provider/package/blastwave.rb +111 -0
- data/vendored/puppet/lib/puppet/provider/package/dnf.rb +46 -0
- data/vendored/puppet/lib/puppet/provider/package/dpkg.rb +165 -0
- data/vendored/puppet/lib/puppet/provider/package/fink.rb +79 -0
- data/vendored/puppet/lib/puppet/provider/package/freebsd.rb +47 -0
- data/vendored/puppet/lib/puppet/provider/package/gem.rb +175 -0
- data/vendored/puppet/lib/puppet/provider/package/hpux.rb +44 -0
- data/vendored/puppet/lib/puppet/provider/package/macports.rb +107 -0
- data/vendored/puppet/lib/puppet/provider/package/nim.rb +282 -0
- data/vendored/puppet/lib/puppet/provider/package/openbsd.rb +242 -0
- data/vendored/puppet/lib/puppet/provider/package/opkg.rb +81 -0
- data/vendored/puppet/lib/puppet/provider/package/pacman.rb +267 -0
- data/vendored/puppet/lib/puppet/provider/package/pip.rb +188 -0
- data/vendored/puppet/lib/puppet/provider/package/pip3.rb +20 -0
- data/vendored/puppet/lib/puppet/provider/package/pkg.rb +255 -0
- data/vendored/puppet/lib/puppet/provider/package/pkgdmg.rb +151 -0
- data/vendored/puppet/lib/puppet/provider/package/pkgin.rb +87 -0
- data/vendored/puppet/lib/puppet/provider/package/pkgng.rb +143 -0
- data/vendored/puppet/lib/puppet/provider/package/pkgutil.rb +186 -0
- data/vendored/puppet/lib/puppet/provider/package/portage.rb +300 -0
- data/vendored/puppet/lib/puppet/provider/package/ports.rb +91 -0
- data/vendored/puppet/lib/puppet/provider/package/portupgrade.rb +239 -0
- data/vendored/puppet/lib/puppet/provider/package/puppet_gem.rb +17 -0
- data/vendored/puppet/lib/puppet/provider/package/rpm.rb +405 -0
- data/vendored/puppet/lib/puppet/provider/package/rug.rb +51 -0
- data/vendored/puppet/lib/puppet/provider/package/sun.rb +133 -0
- data/vendored/puppet/lib/puppet/provider/package/sunfreeware.rb +9 -0
- data/vendored/puppet/lib/puppet/provider/package/tdnf.rb +28 -0
- data/vendored/puppet/lib/puppet/provider/package/up2date.rb +40 -0
- data/vendored/puppet/lib/puppet/provider/package/urpmi.rb +55 -0
- data/vendored/puppet/lib/puppet/provider/package/windows.rb +113 -0
- data/vendored/puppet/lib/puppet/provider/package/windows/exe_package.rb +71 -0
- data/vendored/puppet/lib/puppet/provider/package/windows/msi_package.rb +62 -0
- data/vendored/puppet/lib/puppet/provider/package/windows/package.rb +100 -0
- data/vendored/puppet/lib/puppet/provider/package/yum.rb +293 -0
- data/vendored/puppet/lib/puppet/provider/package/zypper.rb +145 -0
- data/vendored/puppet/lib/puppet/provider/parsedfile.rb +459 -0
- data/vendored/puppet/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +590 -0
- data/vendored/puppet/lib/puppet/provider/selboolean/getsetsebool.rb +47 -0
- data/vendored/puppet/lib/puppet/provider/selmodule/semodule.rb +140 -0
- data/vendored/puppet/lib/puppet/provider/service/base.rb +134 -0
- data/vendored/puppet/lib/puppet/provider/service/bsd.rb +51 -0
- data/vendored/puppet/lib/puppet/provider/service/daemontools.rb +194 -0
- data/vendored/puppet/lib/puppet/provider/service/debian.rb +74 -0
- data/vendored/puppet/lib/puppet/provider/service/freebsd.rb +143 -0
- data/vendored/puppet/lib/puppet/provider/service/gentoo.rb +45 -0
- data/vendored/puppet/lib/puppet/provider/service/init.rb +194 -0
- data/vendored/puppet/lib/puppet/provider/service/launchd.rb +345 -0
- data/vendored/puppet/lib/puppet/provider/service/openbsd.rb +100 -0
- data/vendored/puppet/lib/puppet/provider/service/openrc.rb +71 -0
- data/vendored/puppet/lib/puppet/provider/service/openwrt.rb +36 -0
- data/vendored/puppet/lib/puppet/provider/service/rcng.rb +51 -0
- data/vendored/puppet/lib/puppet/provider/service/redhat.rb +72 -0
- data/vendored/puppet/lib/puppet/provider/service/runit.rb +112 -0
- data/vendored/puppet/lib/puppet/provider/service/service.rb +42 -0
- data/vendored/puppet/lib/puppet/provider/service/smf.rb +170 -0
- data/vendored/puppet/lib/puppet/provider/service/src.rb +147 -0
- data/vendored/puppet/lib/puppet/provider/service/systemd.rb +187 -0
- data/vendored/puppet/lib/puppet/provider/service/upstart.rb +359 -0
- data/vendored/puppet/lib/puppet/provider/service/windows.rb +106 -0
- data/vendored/puppet/lib/puppet/provider/ssh_authorized_key/parsed.rb +105 -0
- data/vendored/puppet/lib/puppet/provider/sshkey/parsed.rb +50 -0
- data/vendored/puppet/lib/puppet/provider/user/aix.rb +383 -0
- data/vendored/puppet/lib/puppet/provider/user/directoryservice.rb +632 -0
- data/vendored/puppet/lib/puppet/provider/user/hpux.rb +95 -0
- data/vendored/puppet/lib/puppet/provider/user/ldap.rb +128 -0
- data/vendored/puppet/lib/puppet/provider/user/openbsd.rb +76 -0
- data/vendored/puppet/lib/puppet/provider/user/pw.rb +98 -0
- data/vendored/puppet/lib/puppet/provider/user/user_role_add.rb +233 -0
- data/vendored/puppet/lib/puppet/provider/user/useradd.rb +265 -0
- data/vendored/puppet/lib/puppet/provider/user/windows_adsi.rb +148 -0
- data/vendored/puppet/lib/puppet/provider/vlan/cisco.rb +28 -0
- data/vendored/puppet/lib/puppet/provider/yumrepo/inifile.rb +303 -0
- data/vendored/puppet/lib/puppet/provider/zfs/zfs.rb +108 -0
- data/vendored/puppet/lib/puppet/provider/zone/solaris.rb +364 -0
- data/vendored/puppet/lib/puppet/provider/zpool/zpool.rb +125 -0
- data/vendored/puppet/lib/puppet/reference/configuration.rb +86 -0
- data/vendored/puppet/lib/puppet/reference/function.rb +17 -0
- data/vendored/puppet/lib/puppet/reference/indirection.rb +71 -0
- data/vendored/puppet/lib/puppet/reference/metaparameter.rb +35 -0
- data/vendored/puppet/lib/puppet/reference/providers.rb +118 -0
- data/vendored/puppet/lib/puppet/reference/report.rb +20 -0
- data/vendored/puppet/lib/puppet/reference/type.rb +113 -0
- data/vendored/puppet/lib/puppet/relationship.rb +89 -0
- data/vendored/puppet/lib/puppet/reports.rb +93 -0
- data/vendored/puppet/lib/puppet/reports/http.rb +37 -0
- data/vendored/puppet/lib/puppet/reports/log.rb +14 -0
- data/vendored/puppet/lib/puppet/reports/store.rb +68 -0
- data/vendored/puppet/lib/puppet/resource.rb +670 -0
- data/vendored/puppet/lib/puppet/resource/capability_finder.rb +150 -0
- data/vendored/puppet/lib/puppet/resource/catalog.rb +682 -0
- data/vendored/puppet/lib/puppet/resource/status.rb +227 -0
- data/vendored/puppet/lib/puppet/resource/type.rb +524 -0
- data/vendored/puppet/lib/puppet/resource/type_collection.rb +263 -0
- data/vendored/puppet/lib/puppet/scheduler.rb +16 -0
- data/vendored/puppet/lib/puppet/scheduler/job.rb +53 -0
- data/vendored/puppet/lib/puppet/scheduler/scheduler.rb +44 -0
- data/vendored/puppet/lib/puppet/scheduler/splay_job.rb +32 -0
- data/vendored/puppet/lib/puppet/scheduler/timer.rb +13 -0
- data/vendored/puppet/lib/puppet/settings.rb +1475 -0
- data/vendored/puppet/lib/puppet/settings/array_setting.rb +17 -0
- data/vendored/puppet/lib/puppet/settings/autosign_setting.rb +22 -0
- data/vendored/puppet/lib/puppet/settings/base_setting.rb +197 -0
- data/vendored/puppet/lib/puppet/settings/boolean_setting.rb +32 -0
- data/vendored/puppet/lib/puppet/settings/certificate_revocation_setting.rb +21 -0
- data/vendored/puppet/lib/puppet/settings/config_file.rb +153 -0
- data/vendored/puppet/lib/puppet/settings/directory_setting.rb +18 -0
- data/vendored/puppet/lib/puppet/settings/duration_setting.rb +32 -0
- data/vendored/puppet/lib/puppet/settings/enum_setting.rb +16 -0
- data/vendored/puppet/lib/puppet/settings/environment_conf.rb +213 -0
- data/vendored/puppet/lib/puppet/settings/errors.rb +11 -0
- data/vendored/puppet/lib/puppet/settings/file_or_directory_setting.rb +40 -0
- data/vendored/puppet/lib/puppet/settings/file_setting.rb +245 -0
- data/vendored/puppet/lib/puppet/settings/ini_file.rb +225 -0
- data/vendored/puppet/lib/puppet/settings/path_setting.rb +8 -0
- data/vendored/puppet/lib/puppet/settings/priority_setting.rb +42 -0
- data/vendored/puppet/lib/puppet/settings/server_list_setting.rb +20 -0
- data/vendored/puppet/lib/puppet/settings/string_setting.rb +9 -0
- data/vendored/puppet/lib/puppet/settings/symbolic_enum_setting.rb +17 -0
- data/vendored/puppet/lib/puppet/settings/terminus_setting.rb +14 -0
- data/vendored/puppet/lib/puppet/settings/ttl_setting.rb +51 -0
- data/vendored/puppet/lib/puppet/settings/value_translator.rb +15 -0
- data/vendored/puppet/lib/puppet/ssl.rb +13 -0
- data/vendored/puppet/lib/puppet/ssl/base.rb +158 -0
- data/vendored/puppet/lib/puppet/ssl/certificate.rb +95 -0
- data/vendored/puppet/lib/puppet/ssl/certificate_authority.rb +553 -0
- data/vendored/puppet/lib/puppet/ssl/certificate_authority/autosign_command.rb +45 -0
- data/vendored/puppet/lib/puppet/ssl/certificate_authority/interface.rb +324 -0
- data/vendored/puppet/lib/puppet/ssl/certificate_factory.rb +219 -0
- data/vendored/puppet/lib/puppet/ssl/certificate_request.rb +325 -0
- data/vendored/puppet/lib/puppet/ssl/certificate_request_attributes.rb +37 -0
- data/vendored/puppet/lib/puppet/ssl/certificate_revocation_list.rb +111 -0
- data/vendored/puppet/lib/puppet/ssl/certificate_signer.rb +33 -0
- data/vendored/puppet/lib/puppet/ssl/configuration.rb +61 -0
- data/vendored/puppet/lib/puppet/ssl/digest.rb +20 -0
- data/vendored/puppet/lib/puppet/ssl/host.rb +400 -0
- data/vendored/puppet/lib/puppet/ssl/inventory.rb +55 -0
- data/vendored/puppet/lib/puppet/ssl/key.rb +63 -0
- data/vendored/puppet/lib/puppet/ssl/oids.rb +193 -0
- data/vendored/puppet/lib/puppet/ssl/validator.rb +60 -0
- data/vendored/puppet/lib/puppet/ssl/validator/default_validator.rb +173 -0
- data/vendored/puppet/lib/puppet/ssl/validator/no_validator.rb +20 -0
- data/vendored/puppet/lib/puppet/status.rb +40 -0
- data/vendored/puppet/lib/puppet/syntax_checkers.rb +3 -0
- data/vendored/puppet/lib/puppet/syntax_checkers/base64.rb +40 -0
- data/vendored/puppet/lib/puppet/syntax_checkers/json.rb +35 -0
- data/vendored/puppet/lib/puppet/test/test_helper.rb +252 -0
- data/vendored/puppet/lib/puppet/transaction.rb +444 -0
- data/vendored/puppet/lib/puppet/transaction/additional_resource_generator.rb +220 -0
- data/vendored/puppet/lib/puppet/transaction/event.rb +144 -0
- data/vendored/puppet/lib/puppet/transaction/event_manager.rb +167 -0
- data/vendored/puppet/lib/puppet/transaction/persistence.rb +99 -0
- data/vendored/puppet/lib/puppet/transaction/report.rb +468 -0
- data/vendored/puppet/lib/puppet/transaction/resource_harness.rb +318 -0
- data/vendored/puppet/lib/puppet/type.rb +2665 -0
- data/vendored/puppet/lib/puppet/type/augeas.rb +211 -0
- data/vendored/puppet/lib/puppet/type/component.rb +88 -0
- data/vendored/puppet/lib/puppet/type/computer.rb +66 -0
- data/vendored/puppet/lib/puppet/type/cron.rb +480 -0
- data/vendored/puppet/lib/puppet/type/exec.rb +623 -0
- data/vendored/puppet/lib/puppet/type/file.rb +1039 -0
- data/vendored/puppet/lib/puppet/type/file/checksum.rb +50 -0
- data/vendored/puppet/lib/puppet/type/file/checksum_value.rb +54 -0
- data/vendored/puppet/lib/puppet/type/file/content.rb +160 -0
- data/vendored/puppet/lib/puppet/type/file/ctime.rb +20 -0
- data/vendored/puppet/lib/puppet/type/file/data_sync.rb +93 -0
- data/vendored/puppet/lib/puppet/type/file/ensure.rb +192 -0
- data/vendored/puppet/lib/puppet/type/file/group.rb +41 -0
- data/vendored/puppet/lib/puppet/type/file/mode.rb +177 -0
- data/vendored/puppet/lib/puppet/type/file/mtime.rb +18 -0
- data/vendored/puppet/lib/puppet/type/file/owner.rb +44 -0
- data/vendored/puppet/lib/puppet/type/file/selcontext.rb +141 -0
- data/vendored/puppet/lib/puppet/type/file/source.rb +356 -0
- data/vendored/puppet/lib/puppet/type/file/target.rb +87 -0
- data/vendored/puppet/lib/puppet/type/file/type.rb +19 -0
- data/vendored/puppet/lib/puppet/type/filebucket.rb +117 -0
- data/vendored/puppet/lib/puppet/type/group.rb +209 -0
- data/vendored/puppet/lib/puppet/type/host.rb +95 -0
- data/vendored/puppet/lib/puppet/type/interface.rb +121 -0
- data/vendored/puppet/lib/puppet/type/k5login.rb +165 -0
- data/vendored/puppet/lib/puppet/type/macauthorization.rb +167 -0
- data/vendored/puppet/lib/puppet/type/mailalias.rb +46 -0
- data/vendored/puppet/lib/puppet/type/maillist.rb +62 -0
- data/vendored/puppet/lib/puppet/type/mcx.rb +98 -0
- data/vendored/puppet/lib/puppet/type/mount.rb +314 -0
- data/vendored/puppet/lib/puppet/type/nagios_command.rb +3 -0
- data/vendored/puppet/lib/puppet/type/nagios_contact.rb +3 -0
- data/vendored/puppet/lib/puppet/type/nagios_contactgroup.rb +3 -0
- data/vendored/puppet/lib/puppet/type/nagios_host.rb +3 -0
- data/vendored/puppet/lib/puppet/type/nagios_hostdependency.rb +3 -0
- data/vendored/puppet/lib/puppet/type/nagios_hostescalation.rb +3 -0
- data/vendored/puppet/lib/puppet/type/nagios_hostextinfo.rb +3 -0
- data/vendored/puppet/lib/puppet/type/nagios_hostgroup.rb +3 -0
- data/vendored/puppet/lib/puppet/type/nagios_service.rb +3 -0
- data/vendored/puppet/lib/puppet/type/nagios_servicedependency.rb +3 -0
- data/vendored/puppet/lib/puppet/type/nagios_serviceescalation.rb +3 -0
- data/vendored/puppet/lib/puppet/type/nagios_serviceextinfo.rb +3 -0
- data/vendored/puppet/lib/puppet/type/nagios_servicegroup.rb +3 -0
- data/vendored/puppet/lib/puppet/type/nagios_timeperiod.rb +3 -0
- data/vendored/puppet/lib/puppet/type/notify.rb +46 -0
- data/vendored/puppet/lib/puppet/type/package.rb +571 -0
- data/vendored/puppet/lib/puppet/type/resources.rb +180 -0
- data/vendored/puppet/lib/puppet/type/router.rb +17 -0
- data/vendored/puppet/lib/puppet/type/schedule.rb +481 -0
- data/vendored/puppet/lib/puppet/type/scheduled_task.rb +183 -0
- data/vendored/puppet/lib/puppet/type/selboolean.rb +26 -0
- data/vendored/puppet/lib/puppet/type/selmodule.rb +59 -0
- data/vendored/puppet/lib/puppet/type/service.rb +258 -0
- data/vendored/puppet/lib/puppet/type/ssh_authorized_key.rb +143 -0
- data/vendored/puppet/lib/puppet/type/sshkey.rb +83 -0
- data/vendored/puppet/lib/puppet/type/stage.rb +27 -0
- data/vendored/puppet/lib/puppet/type/tidy.rb +345 -0
- data/vendored/puppet/lib/puppet/type/user.rb +794 -0
- data/vendored/puppet/lib/puppet/type/vlan.rb +26 -0
- data/vendored/puppet/lib/puppet/type/whit.rb +34 -0
- data/vendored/puppet/lib/puppet/type/yumrepo.rb +439 -0
- data/vendored/puppet/lib/puppet/type/zfs.rb +154 -0
- data/vendored/puppet/lib/puppet/type/zone.rb +382 -0
- data/vendored/puppet/lib/puppet/type/zpool.rb +91 -0
- data/vendored/puppet/lib/puppet/util.rb +700 -0
- data/vendored/puppet/lib/puppet/util/at_fork.rb +35 -0
- data/vendored/puppet/lib/puppet/util/at_fork/noop.rb +18 -0
- data/vendored/puppet/lib/puppet/util/at_fork/solaris.rb +160 -0
- data/vendored/puppet/lib/puppet/util/autoload.rb +226 -0
- data/vendored/puppet/lib/puppet/util/backups.rb +86 -0
- data/vendored/puppet/lib/puppet/util/character_encoding.rb +98 -0
- data/vendored/puppet/lib/puppet/util/checksums.rb +363 -0
- data/vendored/puppet/lib/puppet/util/classgen.rb +228 -0
- data/vendored/puppet/lib/puppet/util/colors.rb +100 -0
- data/vendored/puppet/lib/puppet/util/command_line.rb +190 -0
- data/vendored/puppet/lib/puppet/util/command_line/puppet_option_parser.rb +87 -0
- data/vendored/puppet/lib/puppet/util/command_line/trollop.rb +825 -0
- data/vendored/puppet/lib/puppet/util/constant_inflector.rb +24 -0
- data/vendored/puppet/lib/puppet/util/diff.rb +79 -0
- data/vendored/puppet/lib/puppet/util/docs.rb +128 -0
- data/vendored/puppet/lib/puppet/util/errors.rb +159 -0
- data/vendored/puppet/lib/puppet/util/execution.rb +412 -0
- data/vendored/puppet/lib/puppet/util/execution_stub.rb +26 -0
- data/vendored/puppet/lib/puppet/util/feature.rb +95 -0
- data/vendored/puppet/lib/puppet/util/file_watcher.rb +28 -0
- data/vendored/puppet/lib/puppet/util/fileparsing.rb +375 -0
- data/vendored/puppet/lib/puppet/util/filetype.rb +309 -0
- data/vendored/puppet/lib/puppet/util/http_proxy.rb +207 -0
- data/vendored/puppet/lib/puppet/util/inifile.rb +340 -0
- data/vendored/puppet/lib/puppet/util/instance_loader.rb +79 -0
- data/vendored/puppet/lib/puppet/util/json_lockfile.rb +44 -0
- data/vendored/puppet/lib/puppet/util/ldap.rb +2 -0
- data/vendored/puppet/lib/puppet/util/ldap/connection.rb +71 -0
- data/vendored/puppet/lib/puppet/util/ldap/generator.rb +42 -0
- data/vendored/puppet/lib/puppet/util/ldap/manager.rb +281 -0
- data/vendored/puppet/lib/puppet/util/libuser.rb +12 -0
- data/vendored/puppet/lib/puppet/util/limits.rb +12 -0
- data/vendored/puppet/lib/puppet/util/lockfile.rb +66 -0
- data/vendored/puppet/lib/puppet/util/log.rb +415 -0
- data/vendored/puppet/lib/puppet/util/log/destination.rb +49 -0
- data/vendored/puppet/lib/puppet/util/log/destinations.rb +258 -0
- data/vendored/puppet/lib/puppet/util/logging.rb +311 -0
- data/vendored/puppet/lib/puppet/util/metaid.rb +21 -0
- data/vendored/puppet/lib/puppet/util/methodhelper.rb +32 -0
- data/vendored/puppet/lib/puppet/util/metric.rb +64 -0
- data/vendored/puppet/lib/puppet/util/monkey_patches.rb +108 -0
- data/vendored/puppet/lib/puppet/util/multi_match.rb +51 -0
- data/vendored/puppet/lib/puppet/util/nagios_maker.rb +85 -0
- data/vendored/puppet/lib/puppet/util/network_device.rb +17 -0
- data/vendored/puppet/lib/puppet/util/network_device/base.rb +23 -0
- data/vendored/puppet/lib/puppet/util/network_device/cisco.rb +4 -0
- data/vendored/puppet/lib/puppet/util/network_device/cisco/device.rb +285 -0
- data/vendored/puppet/lib/puppet/util/network_device/cisco/facts.rb +72 -0
- data/vendored/puppet/lib/puppet/util/network_device/cisco/interface.rb +94 -0
- data/vendored/puppet/lib/puppet/util/network_device/config.rb +105 -0
- data/vendored/puppet/lib/puppet/util/network_device/ipcalc.rb +68 -0
- data/vendored/puppet/lib/puppet/util/network_device/transport.rb +5 -0
- data/vendored/puppet/lib/puppet/util/network_device/transport/base.rb +26 -0
- data/vendored/puppet/lib/puppet/util/network_device/transport/ssh.rb +126 -0
- data/vendored/puppet/lib/puppet/util/network_device/transport/telnet.rb +47 -0
- data/vendored/puppet/lib/puppet/util/package.rb +31 -0
- data/vendored/puppet/lib/puppet/util/pidlock.rb +62 -0
- data/vendored/puppet/lib/puppet/util/platform.rb +35 -0
- data/vendored/puppet/lib/puppet/util/plist.rb +155 -0
- data/vendored/puppet/lib/puppet/util/posix.rb +137 -0
- data/vendored/puppet/lib/puppet/util/profiler.rb +53 -0
- data/vendored/puppet/lib/puppet/util/profiler/aggregate.rb +85 -0
- data/vendored/puppet/lib/puppet/util/profiler/around_profiler.rb +67 -0
- data/vendored/puppet/lib/puppet/util/profiler/logging.rb +48 -0
- data/vendored/puppet/lib/puppet/util/profiler/object_counts.rb +17 -0
- data/vendored/puppet/lib/puppet/util/profiler/wall_clock.rb +35 -0
- data/vendored/puppet/lib/puppet/util/provider_features.rb +184 -0
- data/vendored/puppet/lib/puppet/util/psych_support.rb +30 -0
- data/vendored/puppet/lib/puppet/util/rdoc.rb +60 -0
- data/vendored/puppet/lib/puppet/util/rdoc/code_objects.rb +294 -0
- data/vendored/puppet/lib/puppet/util/rdoc/generators/puppet_generator.rb +910 -0
- data/vendored/puppet/lib/puppet/util/rdoc/generators/template/puppet/puppet.rb +1085 -0
- data/vendored/puppet/lib/puppet/util/rdoc/parser.rb +12 -0
- data/vendored/puppet/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +259 -0
- data/vendored/puppet/lib/puppet/util/rdoc/parser/puppet_parser_rdoc2.rb +14 -0
- data/vendored/puppet/lib/puppet/util/reference.rb +118 -0
- data/vendored/puppet/lib/puppet/util/resource_template.rb +61 -0
- data/vendored/puppet/lib/puppet/util/retry_action.rb +46 -0
- data/vendored/puppet/lib/puppet/util/rubygems.rb +75 -0
- data/vendored/puppet/lib/puppet/util/run_mode.rb +110 -0
- data/vendored/puppet/lib/puppet/util/selinux.rb +264 -0
- data/vendored/puppet/lib/puppet/util/skip_tags.rb +9 -0
- data/vendored/puppet/lib/puppet/util/splayer.rb +18 -0
- data/vendored/puppet/lib/puppet/util/ssl.rb +53 -0
- data/vendored/puppet/lib/puppet/util/storage.rb +89 -0
- data/vendored/puppet/lib/puppet/util/suidmanager.rb +165 -0
- data/vendored/puppet/lib/puppet/util/symbolic_file_mode.rb +144 -0
- data/vendored/puppet/lib/puppet/util/tag_set.rb +27 -0
- data/vendored/puppet/lib/puppet/util/tagging.rb +118 -0
- data/vendored/puppet/lib/puppet/util/terminal.rb +16 -0
- data/vendored/puppet/lib/puppet/util/user_attr.rb +21 -0
- data/vendored/puppet/lib/puppet/util/warnings.rb +31 -0
- data/vendored/puppet/lib/puppet/util/watched_file.rb +37 -0
- data/vendored/puppet/lib/puppet/util/watcher.rb +17 -0
- data/vendored/puppet/lib/puppet/util/watcher/change_watcher.rb +33 -0
- data/vendored/puppet/lib/puppet/util/watcher/periodic_watcher.rb +37 -0
- data/vendored/puppet/lib/puppet/util/watcher/timer.rb +19 -0
- data/vendored/puppet/lib/puppet/util/windows.rb +35 -0
- data/vendored/puppet/lib/puppet/util/windows/access_control_entry.rb +84 -0
- data/vendored/puppet/lib/puppet/util/windows/access_control_list.rb +113 -0
- data/vendored/puppet/lib/puppet/util/windows/adsi.rb +545 -0
- data/vendored/puppet/lib/puppet/util/windows/api_types.rb +282 -0
- data/vendored/puppet/lib/puppet/util/windows/com.rb +225 -0
- data/vendored/puppet/lib/puppet/util/windows/error.rb +83 -0
- data/vendored/puppet/lib/puppet/util/windows/eventlog.rb +197 -0
- data/vendored/puppet/lib/puppet/util/windows/file.rb +571 -0
- data/vendored/puppet/lib/puppet/util/windows/principal.rb +192 -0
- data/vendored/puppet/lib/puppet/util/windows/process.rb +497 -0
- data/vendored/puppet/lib/puppet/util/windows/registry.rb +374 -0
- data/vendored/puppet/lib/puppet/util/windows/root_certs.rb +108 -0
- data/vendored/puppet/lib/puppet/util/windows/security.rb +857 -0
- data/vendored/puppet/lib/puppet/util/windows/security_descriptor.rb +62 -0
- data/vendored/puppet/lib/puppet/util/windows/sid.rb +282 -0
- data/vendored/puppet/lib/puppet/util/windows/string.rb +16 -0
- data/vendored/puppet/lib/puppet/util/windows/taskscheduler.rb +1267 -0
- data/vendored/puppet/lib/puppet/util/windows/user.rb +309 -0
- data/vendored/puppet/lib/puppet/util/yaml.rb +36 -0
- data/vendored/puppet/lib/puppet/vendor.rb +57 -0
- data/vendored/puppet/lib/puppet/vendor/deep_merge/lib/deep_merge.rb +2 -0
- data/vendored/puppet/lib/puppet/vendor/deep_merge/lib/deep_merge/core.rb +210 -0
- data/vendored/puppet/lib/puppet/vendor/deep_merge/lib/deep_merge/deep_merge_hash.rb +28 -0
- data/vendored/puppet/lib/puppet/vendor/deep_merge/lib/deep_merge/rails_compat.rb +27 -0
- data/vendored/puppet/lib/puppet/vendor/deep_merge/test/test_deep_merge.rb +608 -0
- data/vendored/puppet/lib/puppet/vendor/load_deep_merge.rb +1 -0
- data/vendored/puppet/lib/puppet/vendor/load_pathspec.rb +1 -0
- data/vendored/puppet/lib/puppet/vendor/load_semantic.rb +1 -0
- data/vendored/puppet/lib/puppet/vendor/load_semantic_puppet.rb +1 -0
- data/vendored/puppet/lib/puppet/vendor/pathspec/lib/pathspec.rb +122 -0
- data/vendored/puppet/lib/puppet/vendor/pathspec/lib/pathspec/gitignorespec.rb +275 -0
- data/vendored/puppet/lib/puppet/vendor/pathspec/lib/pathspec/regexspec.rb +17 -0
- data/vendored/puppet/lib/puppet/vendor/pathspec/lib/pathspec/spec.rb +14 -0
- data/vendored/puppet/lib/puppet/vendor/require_vendored.rb +6 -0
- data/vendored/puppet/lib/puppet/vendor/semantic/lib/semantic.rb +5 -0
- data/vendored/puppet/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet.rb +11 -0
- data/vendored/puppet/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency.rb +181 -0
- data/vendored/puppet/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/graph.rb +60 -0
- data/vendored/puppet/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/graph_node.rb +117 -0
- data/vendored/puppet/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/module_release.rb +58 -0
- data/vendored/puppet/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/source.rb +25 -0
- data/vendored/puppet/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/unsatisfiable_graph.rb +31 -0
- data/vendored/puppet/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/gem_version.rb +3 -0
- data/vendored/puppet/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/version.rb +203 -0
- data/vendored/puppet/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/version_range.rb +758 -0
- data/vendored/puppet/lib/puppet/version.rb +93 -0
- data/vendored/puppet/lib/puppet_pal.rb +879 -0
- data/vendored/puppet/lib/puppet_x.rb +14 -0
- metadata +1237 -2
@@ -0,0 +1,34 @@
|
|
1
|
+
# Include the specified classes
|
2
|
+
Puppet::Parser::Functions::newfunction(:include, :arity => -2, :doc =>
|
3
|
+
"Declares one or more classes, causing the resources in them to be
|
4
|
+
evaluated and added to the catalog. Accepts a class name, an array of class
|
5
|
+
names, or a comma-separated list of class names.
|
6
|
+
|
7
|
+
The `include` function can be used multiple times on the same class and will
|
8
|
+
only declare a given class once. If a class declared with `include` has any
|
9
|
+
parameters, Puppet will automatically look up values for them in Hiera, using
|
10
|
+
`<class name>::<parameter name>` as the lookup key.
|
11
|
+
|
12
|
+
Contrast this behavior with resource-like class declarations
|
13
|
+
(`class {'name': parameter => 'value',}`), which must be used in only one place
|
14
|
+
per class and can directly set parameters. You should avoid using both `include`
|
15
|
+
and resource-like declarations with the same class.
|
16
|
+
|
17
|
+
The `include` function does not cause classes to be contained in the class
|
18
|
+
where they are declared. For that, see the `contain` function. It also
|
19
|
+
does not create a dependency relationship between the declared class and the
|
20
|
+
surrounding class; for that, see the `require` function.
|
21
|
+
|
22
|
+
You must use the class's full name;
|
23
|
+
relative names are not allowed. In addition to names in string form,
|
24
|
+
you may also directly use Class and Resource Type values that are produced by
|
25
|
+
the future parser's resource and relationship expressions.
|
26
|
+
|
27
|
+
- Since < 3.0.0
|
28
|
+
- Since 4.0.0 support for class and resource type values, absolute names
|
29
|
+
- Since 4.7.0 returns an Array[Type[Class]] of all included classes
|
30
|
+
") do |classes|
|
31
|
+
call_function('include', classes)
|
32
|
+
#TRANSLATORS "function_include", "Scope", and "Scope#call_function" refer to Puppet internals and should not be translated
|
33
|
+
Puppet.warn_once('deprecations', '3xfunction#include', _("Calling function_include via the Scope class is deprecated. Use Scope#call_function instead"))
|
34
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
Puppet::Parser::Functions::newfunction(:inline_epp, :type => :rvalue, :arity => -2, :doc =>
|
2
|
+
"Evaluates an Embedded Puppet (EPP) template string and returns the rendered
|
3
|
+
text result as a String.
|
4
|
+
|
5
|
+
`inline_epp('<EPP TEMPLATE STRING>', <PARAMETER HASH>)`
|
6
|
+
|
7
|
+
The first argument to this function should be a string containing an EPP
|
8
|
+
template. In most cases, the last argument is optional; if used, it should be a
|
9
|
+
[hash](/puppet/latest/reference/lang_data_hash.html) that contains parameters to
|
10
|
+
pass to the template.
|
11
|
+
|
12
|
+
- See the [template](/puppet/latest/reference/lang_template.html) documentation
|
13
|
+
for general template usage information.
|
14
|
+
- See the [EPP syntax](/puppet/latest/reference/lang_template_epp.html)
|
15
|
+
documentation for examples of EPP.
|
16
|
+
|
17
|
+
For example, to evaluate an inline EPP template and pass it the `docroot` and
|
18
|
+
`virtual_docroot` parameters, call the `inline_epp` function like this:
|
19
|
+
|
20
|
+
`inline_epp('docroot: <%= $docroot %> Virtual docroot: <%= $virtual_docroot %>',
|
21
|
+
{ 'docroot' => '/var/www/html', 'virtual_docroot' => '/var/www/example' })`
|
22
|
+
|
23
|
+
Puppet produces a syntax error if you pass more parameters than are declared in
|
24
|
+
the template's parameter tag. When passing parameters to a template that
|
25
|
+
contains a parameter tag, use the same names as the tag's declared parameters.
|
26
|
+
|
27
|
+
Parameters are required only if they are declared in the called template's
|
28
|
+
parameter tag without default values. Puppet produces an error if the
|
29
|
+
`inline_epp` function fails to pass any required parameter.
|
30
|
+
|
31
|
+
An inline EPP template should be written as a single-quoted string or
|
32
|
+
[heredoc](/puppet/latest/reference/lang_data_string.html#heredocs).
|
33
|
+
A double-quoted string is subject to expression interpolation before the string
|
34
|
+
is parsed as an EPP template.
|
35
|
+
|
36
|
+
For example, to evaluate an inline EPP template using a heredoc, call the
|
37
|
+
`inline_epp` function like this:
|
38
|
+
|
39
|
+
~~~ puppet
|
40
|
+
# Outputs 'Hello given argument planet!'
|
41
|
+
inline_epp(@(END), { x => 'given argument' })
|
42
|
+
<%- | $x, $y = planet | -%>
|
43
|
+
Hello <%= $x %> <%= $y %>!
|
44
|
+
END
|
45
|
+
~~~
|
46
|
+
|
47
|
+
- Since 3.5
|
48
|
+
- Requires [future parser](/puppet/3.8/reference/experiments_future.html) in Puppet 3.5 to 3.8") do |arguments|
|
49
|
+
|
50
|
+
Puppet::Parser::Functions::Error.is4x('inline_epp')
|
51
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
Puppet::Parser::Functions::newfunction(:inline_template, :type => :rvalue, :arity => -2, :doc =>
|
2
|
+
"Evaluate a template string and return its value. See
|
3
|
+
[the templating docs](https://docs.puppetlabs.com/puppet/latest/reference/lang_template.html) for
|
4
|
+
more information. Note that if multiple template strings are specified, their
|
5
|
+
output is all concatenated and returned as the output of the function.") do |vals|
|
6
|
+
|
7
|
+
if Puppet[:tasks]
|
8
|
+
raise Puppet::ParseErrorWithIssue.from_issue_and_stack(
|
9
|
+
Puppet::Pops::Issues::FEATURE_NOT_SUPPORTED_WHEN_SCRIPTING,
|
10
|
+
{:feature => 'ERB inline_template'})
|
11
|
+
end
|
12
|
+
|
13
|
+
require 'erb'
|
14
|
+
|
15
|
+
vals.collect do |string|
|
16
|
+
# Use a wrapper, so the template can't get access to the full
|
17
|
+
# Scope object.
|
18
|
+
|
19
|
+
wrapper = Puppet::Parser::TemplateWrapper.new(self)
|
20
|
+
begin
|
21
|
+
wrapper.result(string)
|
22
|
+
rescue => detail
|
23
|
+
raise Puppet::ParseError, _("Failed to parse inline template: %{detail}") % { detail: detail }, detail.backtrace
|
24
|
+
end
|
25
|
+
end.join("")
|
26
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
Puppet::Parser::Functions::newfunction(
|
2
|
+
:lest,
|
3
|
+
:type => :rvalue,
|
4
|
+
:arity => -2,
|
5
|
+
:doc => <<-DOC
|
6
|
+
Call a [lambda](https://docs.puppet.com/puppet/latest/reference/lang_lambdas.html)
|
7
|
+
(which should accept no arguments) if the argument given to the function is `undef`.
|
8
|
+
Returns the result of calling the lambda if the argument is `undef`, otherwise the
|
9
|
+
given argument.
|
10
|
+
|
11
|
+
The `lest` function is useful in a chain of `then` calls, or in general
|
12
|
+
as a guard against `undef` values. The function can be used to call `fail`, or to
|
13
|
+
return a default value.
|
14
|
+
|
15
|
+
These two expressions are equivalent:
|
16
|
+
|
17
|
+
```puppet
|
18
|
+
if $x == undef { do_things() }
|
19
|
+
lest($x) || { do_things() }
|
20
|
+
```
|
21
|
+
|
22
|
+
**Example:** Using the `lest` function
|
23
|
+
|
24
|
+
```puppet
|
25
|
+
$data = {a => [ b, c ] }
|
26
|
+
notice $data.dig(a, b, c)
|
27
|
+
.then |$x| { $x * 2 }
|
28
|
+
.lest || { fail("no value for $data[a][b][c]" }
|
29
|
+
```
|
30
|
+
|
31
|
+
Would fail the operation because $data[a][b][c] results in `undef`
|
32
|
+
(there is no `b` key in `a`).
|
33
|
+
|
34
|
+
In contrast - this example:
|
35
|
+
|
36
|
+
```puppet
|
37
|
+
$data = {a => { b => { c => 10 } } }
|
38
|
+
notice $data.dig(a, b, c)
|
39
|
+
.then |$x| { $x * 2 }
|
40
|
+
.lest || { fail("no value for $data[a][b][c]" }
|
41
|
+
```
|
42
|
+
|
43
|
+
Would notice the value `20`
|
44
|
+
|
45
|
+
* Since 4.5.0
|
46
|
+
DOC
|
47
|
+
) do |args|
|
48
|
+
Puppet::Parser::Functions::Error.is4x('lest')
|
49
|
+
end
|
@@ -0,0 +1,132 @@
|
|
1
|
+
module Puppet::Parser::Functions
|
2
|
+
newfunction(:lookup, :type => :rvalue, :arity => -2, :doc => <<-'ENDHEREDOC') do |args|
|
3
|
+
Uses the Puppet lookup system to retrieve a value for a given key. By default,
|
4
|
+
this returns the first value found (and fails compilation if no values are
|
5
|
+
available), but you can configure it to merge multiple values into one, fail
|
6
|
+
gracefully, and more.
|
7
|
+
|
8
|
+
When looking up a key, Puppet will search up to three tiers of data, in the
|
9
|
+
following order:
|
10
|
+
|
11
|
+
1. Hiera.
|
12
|
+
2. The current environment's data provider.
|
13
|
+
3. The indicated module's data provider, if the key is of the form
|
14
|
+
`<MODULE NAME>::<SOMETHING>`.
|
15
|
+
|
16
|
+
#### Arguments
|
17
|
+
|
18
|
+
You must provide the name of a key to look up, and can optionally provide other
|
19
|
+
arguments. You can combine these arguments in the following ways:
|
20
|
+
|
21
|
+
* `lookup( <NAME>, [<VALUE TYPE>], [<MERGE BEHAVIOR>], [<DEFAULT VALUE>] )`
|
22
|
+
* `lookup( [<NAME>], <OPTIONS HASH> )`
|
23
|
+
* `lookup( as above ) |$key| { # lambda returns a default value }`
|
24
|
+
|
25
|
+
Arguments in `[square brackets]` are optional.
|
26
|
+
|
27
|
+
The arguments accepted by `lookup` are as follows:
|
28
|
+
|
29
|
+
1. `<NAME>` (string or array) --- The name of the key to look up.
|
30
|
+
* This can also be an array of keys. If Puppet doesn't find anything for the
|
31
|
+
first key, it will try again with the subsequent ones, only resorting to a
|
32
|
+
default value if none of them succeed.
|
33
|
+
2. `<VALUE TYPE>` (data type) --- A
|
34
|
+
[data type](https://docs.puppetlabs.com/puppet/latest/reference/lang_data_type.html)
|
35
|
+
that must match the retrieved value; if not, the lookup (and catalog
|
36
|
+
compilation) will fail. Defaults to `Data` (accepts any normal value).
|
37
|
+
3. `<MERGE BEHAVIOR>` (string or hash; see **"Merge Behaviors"** below) ---
|
38
|
+
Whether (and how) to combine multiple values. If present, this overrides any
|
39
|
+
merge behavior specified in the data sources. Defaults to no value; Puppet will
|
40
|
+
use merge behavior from the data sources if present, and will otherwise do a
|
41
|
+
first-found lookup.
|
42
|
+
4. `<DEFAULT VALUE>` (any normal value) --- If present, `lookup` returns this
|
43
|
+
when it can't find a normal value. Default values are never merged with found
|
44
|
+
values. Like a normal value, the default must match the value type. Defaults to
|
45
|
+
no value; if Puppet can't find a normal value, the lookup (and compilation) will
|
46
|
+
fail.
|
47
|
+
5. `<OPTIONS HASH>` (hash) --- Alternate way to set the arguments above, plus
|
48
|
+
some less-common extra options. If you pass an options hash, you can't combine
|
49
|
+
it with any regular arguments (except `<NAME>`). An options hash can have the
|
50
|
+
following keys:
|
51
|
+
* `'name'` --- Same as `<NAME>` (argument 1). You can pass this as an
|
52
|
+
argument or in the hash, but not both.
|
53
|
+
* `'value_type'` --- Same as `<VALUE TYPE>` (argument 2).
|
54
|
+
* `'merge'` --- Same as `<MERGE BEHAVIOR>` (argument 3).
|
55
|
+
* `'default_value'` --- Same as `<DEFAULT VALUE>` (argument 4).
|
56
|
+
* `'default_values_hash'` (hash) --- A hash of lookup keys and default
|
57
|
+
values. If Puppet can't find a normal value, it will check this hash for the
|
58
|
+
requested key before giving up. You can combine this with `default_value` or
|
59
|
+
a lambda, which will be used if the key isn't present in this hash. Defaults
|
60
|
+
to an empty hash.
|
61
|
+
* `'override'` (hash) --- A hash of lookup keys and override values. Puppet
|
62
|
+
will check for the requested key in the overrides hash _first;_ if found, it
|
63
|
+
returns that value as the _final_ value, ignoring merge behavior. Defaults
|
64
|
+
to an empty hash.
|
65
|
+
|
66
|
+
Finally, `lookup` can take a lambda, which must accept a single parameter.
|
67
|
+
This is yet another way to set a default value for the lookup; if no results are
|
68
|
+
found, Puppet will pass the requested key to the lambda and use its result as
|
69
|
+
the default value.
|
70
|
+
|
71
|
+
#### Merge Behaviors
|
72
|
+
|
73
|
+
Puppet lookup uses a hierarchy of data sources, and a given key might have
|
74
|
+
values in multiple sources. By default, Puppet returns the first value it finds,
|
75
|
+
but it can also continue searching and merge all the values together.
|
76
|
+
|
77
|
+
> **Note:** Data sources can use the special `lookup_options` metadata key to
|
78
|
+
request a specific merge behavior for a key. The `lookup` function will use that
|
79
|
+
requested behavior unless you explicitly specify one.
|
80
|
+
|
81
|
+
The valid merge behaviors are:
|
82
|
+
|
83
|
+
* `'first'` --- Returns the first value found, with no merging. Puppet lookup's
|
84
|
+
default behavior.
|
85
|
+
* `'unique'` (called "array merge" in classic Hiera) --- Combines any number of
|
86
|
+
arrays and scalar values to return a merged, flattened array with all duplicate
|
87
|
+
values removed. The lookup will fail if any hash values are found.
|
88
|
+
* `'hash'` --- Combines the keys and values of any number of hashes to return a
|
89
|
+
merged hash. If the same key exists in multiple source hashes, Puppet will use
|
90
|
+
the value from the highest-priority data source; it won't recursively merge the
|
91
|
+
values.
|
92
|
+
* `'deep'` --- Combines the keys and values of any number of hashes to return a
|
93
|
+
merged hash. If the same key exists in multiple source hashes, Puppet will
|
94
|
+
recursively merge hash or array values (with duplicate values removed from
|
95
|
+
arrays). For conflicting scalar values, the highest-priority value will win.
|
96
|
+
* `{'strategy' => 'first|unique|hash'}` --- Same as the string versions of these
|
97
|
+
merge behaviors.
|
98
|
+
* `{'strategy' => 'deep', <DEEP OPTION> => <VALUE>, ...}` --- Same as `'deep'`,
|
99
|
+
but can adjust the merge with additional options. The available options are:
|
100
|
+
* `'knockout_prefix'` (string or undef) --- A string prefix to indicate a
|
101
|
+
value should be _removed_ from the final result. Defaults to `undef`, which
|
102
|
+
disables this feature.
|
103
|
+
* `'sort_merged_arrays'` (boolean) --- Whether to sort all arrays that are
|
104
|
+
merged together. Defaults to `false`.
|
105
|
+
* `'merge_hash_arrays'` (boolean) --- Whether to merge hashes within arrays.
|
106
|
+
Defaults to `false`.
|
107
|
+
|
108
|
+
#### Examples
|
109
|
+
|
110
|
+
Look up a key and return the first value found:
|
111
|
+
|
112
|
+
lookup('ntp::service_name')
|
113
|
+
|
114
|
+
Do a unique merge lookup of class names, then add all of those classes to the
|
115
|
+
catalog (like `hiera_include`):
|
116
|
+
|
117
|
+
lookup('classes', Array[String], 'unique').include
|
118
|
+
|
119
|
+
Do a deep hash merge lookup of user data, but let higher priority sources
|
120
|
+
remove values by prefixing them with `--`:
|
121
|
+
|
122
|
+
lookup( { 'name' => 'users',
|
123
|
+
'merge' => {
|
124
|
+
'strategy' => 'deep',
|
125
|
+
'knockout_prefix' => '--',
|
126
|
+
},
|
127
|
+
})
|
128
|
+
|
129
|
+
ENDHEREDOC
|
130
|
+
Error.is4x('lookup')
|
131
|
+
end
|
132
|
+
end
|
@@ -0,0 +1,76 @@
|
|
1
|
+
Puppet::Parser::Functions::newfunction(
|
2
|
+
:map,
|
3
|
+
:type => :rvalue,
|
4
|
+
:arity => -3,
|
5
|
+
:doc => <<-DOC
|
6
|
+
Applies a [lambda](https://docs.puppetlabs.com/puppet/latest/reference/lang_lambdas.html)
|
7
|
+
to every value in a data structure and returns an array containing the results.
|
8
|
+
|
9
|
+
This function takes two mandatory arguments, in this order:
|
10
|
+
|
11
|
+
1. An array or hash the function will iterate over.
|
12
|
+
2. A lambda, which the function calls for each element in the first argument. It can
|
13
|
+
request one or two parameters.
|
14
|
+
|
15
|
+
**Example**: Using the `map` function
|
16
|
+
|
17
|
+
`$transformed_data = $data.map |$parameter| { <PUPPET CODE BLOCK> }`
|
18
|
+
|
19
|
+
or
|
20
|
+
|
21
|
+
`$transformed_data = map($data) |$parameter| { <PUPPET CODE BLOCK> }`
|
22
|
+
|
23
|
+
When the first argument (`$data` in the above example) is an array, Puppet passes each
|
24
|
+
value in turn to the lambda.
|
25
|
+
|
26
|
+
**Example**: Using the `map` function with an array and a one-parameter lambda
|
27
|
+
|
28
|
+
~~~ puppet
|
29
|
+
# For the array $data, return an array containing each value multiplied by 10
|
30
|
+
$data = [1,2,3]
|
31
|
+
$transformed_data = $data.map |$items| { $items * 10 }
|
32
|
+
# $transformed_data contains [10,20,30]
|
33
|
+
~~~
|
34
|
+
|
35
|
+
When the first argument is a hash, Puppet passes each key and value pair to the lambda
|
36
|
+
as an array in the form `[key, value]`.
|
37
|
+
|
38
|
+
**Example**: Using the `map` function with a hash and a one-parameter lambda
|
39
|
+
|
40
|
+
~~~ puppet
|
41
|
+
# For the hash $data, return an array containing the keys
|
42
|
+
$data = {'a'=>1,'b'=>2,'c'=>3}
|
43
|
+
$transformed_data = $data.map |$items| { $items[0] }
|
44
|
+
# $transformed_data contains ['a','b','c']
|
45
|
+
~~~
|
46
|
+
|
47
|
+
When the first argument is an array and the lambda has two parameters, Puppet passes the
|
48
|
+
array's indexes (enumerated from 0) in the first parameter and its values in the second
|
49
|
+
parameter.
|
50
|
+
|
51
|
+
**Example**: Using the `map` function with an array and a two-parameter lambda
|
52
|
+
|
53
|
+
~~~ puppet
|
54
|
+
# For the array $data, return an array containing the indexes
|
55
|
+
$data = [1,2,3]
|
56
|
+
$transformed_data = $data.map |$index,$value| { $index }
|
57
|
+
# $transformed_data contains [0,1,2]
|
58
|
+
~~~
|
59
|
+
|
60
|
+
When the first argument is a hash, Puppet passes its keys to the first parameter and its
|
61
|
+
values to the second parameter.
|
62
|
+
|
63
|
+
**Example**: Using the `map` function with a hash and a two-parameter lambda
|
64
|
+
|
65
|
+
~~~ puppet
|
66
|
+
# For the hash $data, return an array containing each value
|
67
|
+
$data = {'a'=>1,'b'=>2,'c'=>3}
|
68
|
+
$transformed_data = $data.map |$key,$value| { $value }
|
69
|
+
# $transformed_data contains [1,2,3]
|
70
|
+
~~~
|
71
|
+
|
72
|
+
- Since 4.0.0
|
73
|
+
DOC
|
74
|
+
) do |args|
|
75
|
+
Puppet::Parser::Functions::Error.is4x('map')
|
76
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
Puppet::Parser::Functions::newfunction(
|
2
|
+
:match,
|
3
|
+
:arity => 2,
|
4
|
+
:doc => <<-DOC
|
5
|
+
Matches a regular expression against a string and returns an array containing the match
|
6
|
+
and any matched capturing groups.
|
7
|
+
|
8
|
+
The first argument is a string or array of strings. The second argument is either a
|
9
|
+
regular expression, regular expression represented as a string, or Regex or Pattern
|
10
|
+
data type that the function matches against the first argument.
|
11
|
+
|
12
|
+
The returned array contains the entire match at index 0, and each captured group at
|
13
|
+
subsequent index values. If the value or expression being matched is an array, the
|
14
|
+
function returns an array with mapped match results.
|
15
|
+
|
16
|
+
If the function doesn't find a match, it returns 'undef'.
|
17
|
+
|
18
|
+
**Example**: Matching a regular expression in a string
|
19
|
+
|
20
|
+
~~~ ruby
|
21
|
+
$matches = "abc123".match(/[a-z]+[1-9]+/)
|
22
|
+
# $matches contains [abc123]
|
23
|
+
~~~
|
24
|
+
|
25
|
+
**Example**: Matching a regular expressions with grouping captures in a string
|
26
|
+
|
27
|
+
~~~ ruby
|
28
|
+
$matches = "abc123".match(/([a-z]+)([1-9]+)/)
|
29
|
+
# $matches contains [abc123, abc, 123]
|
30
|
+
~~~
|
31
|
+
|
32
|
+
**Example**: Matching a regular expression with grouping captures in an array of strings
|
33
|
+
|
34
|
+
~~~ ruby
|
35
|
+
$matches = ["abc123","def456"].match(/([a-z]+)([1-9]+)/)
|
36
|
+
# $matches contains [[abc123, abc, 123], [def456, def, 456]]
|
37
|
+
~~~
|
38
|
+
|
39
|
+
- Since 4.0.0
|
40
|
+
DOC
|
41
|
+
) do |args|
|
42
|
+
Puppet::Parser::Functions::Error.is4x('match')
|
43
|
+
end
|
@@ -0,0 +1,991 @@
|
|
1
|
+
Puppet::Parser::Functions::newfunction(
|
2
|
+
:new,
|
3
|
+
:type => :rvalue,
|
4
|
+
:arity => -1,
|
5
|
+
:doc => <<-DOC
|
6
|
+
Creates a new instance/object of a given data type.
|
7
|
+
|
8
|
+
This function makes it possible to create new instances of
|
9
|
+
concrete data types. If a block is given it is called with the
|
10
|
+
just created instance as an argument.
|
11
|
+
|
12
|
+
Calling this function is equivalent to directly
|
13
|
+
calling the data type:
|
14
|
+
|
15
|
+
**Example:** `new` and calling type directly are equivalent
|
16
|
+
|
17
|
+
```puppet
|
18
|
+
$a = Integer.new("42")
|
19
|
+
$b = Integer("42")
|
20
|
+
```
|
21
|
+
|
22
|
+
These would both convert the string `"42"` to the decimal value `42`.
|
23
|
+
|
24
|
+
**Example:** arguments by position or by name
|
25
|
+
|
26
|
+
```puppet
|
27
|
+
$a = Integer.new("42", 8)
|
28
|
+
$b = Integer({from => "42", radix => 8})
|
29
|
+
```
|
30
|
+
|
31
|
+
This would convert the octal (radix 8) number `"42"` in string form
|
32
|
+
to the decimal value `34`.
|
33
|
+
|
34
|
+
The new function supports two ways of giving the arguments:
|
35
|
+
|
36
|
+
* by name (using a hash with property to value mapping)
|
37
|
+
* by position (as regular arguments)
|
38
|
+
|
39
|
+
Note that it is not possible to create new instances of
|
40
|
+
some abstract data types (for example `Variant`). The data type `Optional[T]` is an
|
41
|
+
exception as it will create an instance of `T` or `undef` if the
|
42
|
+
value to convert is `undef`.
|
43
|
+
|
44
|
+
The arguments that can be given is determined by the data type.
|
45
|
+
|
46
|
+
> An assertion is always made that the produced value complies with the given type constraints.
|
47
|
+
|
48
|
+
**Example:** data type constraints are checked
|
49
|
+
|
50
|
+
```puppet
|
51
|
+
Integer[0].new("-100")
|
52
|
+
```
|
53
|
+
|
54
|
+
Would fail with an assertion error (since value is less than 0).
|
55
|
+
|
56
|
+
The following sections show the arguments and conversion rules
|
57
|
+
per data type built into the Puppet Type System.
|
58
|
+
|
59
|
+
### Conversion to Optional[T] and NotUndef[T]
|
60
|
+
|
61
|
+
Conversion to these data types is the same as a conversion to the type argument `T`.
|
62
|
+
In the case of `Optional[T]` it is accepted that the argument to convert may be `undef`.
|
63
|
+
It is however not acceptable to give other arguments (than `undef`) that cannot be
|
64
|
+
converted to `T`.
|
65
|
+
|
66
|
+
### Conversion to Integer
|
67
|
+
|
68
|
+
A new `Integer` can be created from `Integer`, `Float`, `Boolean`, and `String` values.
|
69
|
+
For conversion from `String` it is possible to specify the radix (base).
|
70
|
+
|
71
|
+
```puppet
|
72
|
+
type Radix = Variant[Default, Integer[2,2], Integer[8,8], Integer[10,10], Integer[16,16]]
|
73
|
+
|
74
|
+
function Integer.new(
|
75
|
+
String $value,
|
76
|
+
Radix $radix = 10,
|
77
|
+
Boolean $abs = false
|
78
|
+
)
|
79
|
+
|
80
|
+
function Integer.new(
|
81
|
+
Variant[Numeric, Boolean] $value,
|
82
|
+
Boolean $abs = false
|
83
|
+
)
|
84
|
+
```
|
85
|
+
|
86
|
+
* When converting from `String` the default radix is 10.
|
87
|
+
* If radix is not specified an attempt is made to detect the radix from the start of the string:
|
88
|
+
* `0b` or `0B` is taken as radix 2.
|
89
|
+
* `0x` or `0X` is taken as radix 16.
|
90
|
+
* `0` as radix 8.
|
91
|
+
* All others are decimal.
|
92
|
+
* Conversion from `String` accepts an optional sign in the string.
|
93
|
+
* For hexadecimal (radix 16) conversion an optional leading "0x", or "0X" is accepted.
|
94
|
+
* For octal (radix 8) an optional leading "0" is accepted.
|
95
|
+
* For binary (radix 2) an optional leading "0b" or "0B" is accepted.
|
96
|
+
* When `radix` is set to `default`, the conversion is based on the leading.
|
97
|
+
characters in the string. A leading "0" for radix 8, a leading "0x", or "0X" for
|
98
|
+
radix 16, and leading "0b" or "0B" for binary.
|
99
|
+
* Conversion from `Boolean` results in 0 for `false` and 1 for `true`.
|
100
|
+
* Conversion from `Integer`, `Float`, and `Boolean` ignores the radix.
|
101
|
+
* `Float` value fractions are truncated (no rounding).
|
102
|
+
* When `abs` is set to `true`, the result will be an absolute integer.
|
103
|
+
|
104
|
+
Examples - Converting to Integer:
|
105
|
+
|
106
|
+
```puppet
|
107
|
+
$a_number = Integer("0xFF", 16) # results in 255
|
108
|
+
$a_number = Integer("010") # results in 8
|
109
|
+
$a_number = Integer("010", 10) # results in 10
|
110
|
+
$a_number = Integer(true) # results in 1
|
111
|
+
$a_number = Integer(-38, 10, true) # results in 38
|
112
|
+
```
|
113
|
+
|
114
|
+
### Conversion to Float
|
115
|
+
|
116
|
+
A new `Float` can be created from `Integer`, `Float`, `Boolean`, and `String` values.
|
117
|
+
For conversion from `String` both float and integer formats are supported.
|
118
|
+
|
119
|
+
```puppet
|
120
|
+
function Float.new(
|
121
|
+
Variant[Numeric, Boolean, String] $value,
|
122
|
+
Boolean $abs = true
|
123
|
+
)
|
124
|
+
```
|
125
|
+
|
126
|
+
* For an integer, the floating point fraction of `.0` is added to the value.
|
127
|
+
* A `Boolean` `true` is converted to 1.0, and a `false` to 0.0
|
128
|
+
* In `String` format, integer prefixes for hex and binary are understood (but not octal since
|
129
|
+
floating point in string format may start with a '0').
|
130
|
+
* When `abs` is set to `true`, the result will be an absolute floating point value.
|
131
|
+
|
132
|
+
### Conversion to Numeric
|
133
|
+
|
134
|
+
A new `Integer` or `Float` can be created from `Integer`, `Float`, `Boolean` and
|
135
|
+
`String` values.
|
136
|
+
|
137
|
+
```puppet
|
138
|
+
function Numeric.new(
|
139
|
+
Variant[Numeric, Boolean, String] $value,
|
140
|
+
Boolean $abs = true
|
141
|
+
)
|
142
|
+
```
|
143
|
+
|
144
|
+
* If the value has a decimal period, or if given in scientific notation
|
145
|
+
(e/E), the result is a `Float`, otherwise the value is an `Integer`. The
|
146
|
+
conversion from `String` always uses a radix based on the prefix of the string.
|
147
|
+
* Conversion from `Boolean` results in 0 for `false` and 1 for `true`.
|
148
|
+
* When `abs` is set to `true`, the result will be an absolute `Float`or `Integer` value.
|
149
|
+
|
150
|
+
Examples - Converting to Numeric
|
151
|
+
|
152
|
+
```puppet
|
153
|
+
$a_number = Numeric(true) # results in 1
|
154
|
+
$a_number = Numeric("0xFF") # results in 255
|
155
|
+
$a_number = Numeric("010") # results in 8
|
156
|
+
$a_number = Numeric("3.14") # results in 3.14 (a float)
|
157
|
+
$a_number = Numeric(-42.3, true) # results in 42.3
|
158
|
+
$a_number = Numeric(-42, true) # results in 42
|
159
|
+
```
|
160
|
+
|
161
|
+
### Conversion to Timespan
|
162
|
+
|
163
|
+
A new `Timespan` can be created from `Integer`, `Float`, `String`, and `Hash` values. Several variants of the constructor are provided.
|
164
|
+
|
165
|
+
#### Timespan from seconds
|
166
|
+
|
167
|
+
When a Float is used, the decimal part represents fractions of a second.
|
168
|
+
|
169
|
+
```puppet
|
170
|
+
function Timespan.new(
|
171
|
+
Variant[Float, Integer] $value
|
172
|
+
)
|
173
|
+
```
|
174
|
+
|
175
|
+
#### Timespan from days, hours, minutes, seconds, and fractions of a second
|
176
|
+
|
177
|
+
The arguments can be passed separately in which case the first four, days, hours, minutes, and seconds are mandatory and the rest are optional.
|
178
|
+
All values may overflow and/or be negative. The internal 128-bit nano-second integer is calculated as:
|
179
|
+
|
180
|
+
```
|
181
|
+
(((((days * 24 + hours) * 60 + minutes) * 60 + seconds) * 1000 + milliseconds) * 1000 + microseconds) * 1000 + nanoseconds
|
182
|
+
```
|
183
|
+
|
184
|
+
```puppet
|
185
|
+
function Timespan.new(
|
186
|
+
Integer $days, Integer $hours, Integer $minutes, Integer $seconds,
|
187
|
+
Integer $milliseconds = 0, Integer $microseconds = 0, Integer $nanoseconds = 0
|
188
|
+
)
|
189
|
+
```
|
190
|
+
|
191
|
+
or, all arguments can be passed as a `Hash`, in which case all entries are optional:
|
192
|
+
|
193
|
+
```puppet
|
194
|
+
function Timespan.new(
|
195
|
+
Struct[{
|
196
|
+
Optional[negative] => Boolean,
|
197
|
+
Optional[days] => Integer,
|
198
|
+
Optional[hours] => Integer,
|
199
|
+
Optional[minutes] => Integer,
|
200
|
+
Optional[seconds] => Integer,
|
201
|
+
Optional[milliseconds] => Integer,
|
202
|
+
Optional[microseconds] => Integer,
|
203
|
+
Optional[nanoseconds] => Integer
|
204
|
+
}] $hash
|
205
|
+
)
|
206
|
+
```
|
207
|
+
|
208
|
+
#### Timespan from String and format directive patterns
|
209
|
+
|
210
|
+
The first argument is parsed using the format optionally passed as a string or array of strings. When an array is used, an attempt
|
211
|
+
will be made to parse the string using the first entry and then with each entry in succession until parsing succeeds. If the second
|
212
|
+
argument is omitted, an array of default formats will be used.
|
213
|
+
|
214
|
+
An exception is raised when no format was able to parse the given string.
|
215
|
+
|
216
|
+
```puppet
|
217
|
+
function Timespan.new(
|
218
|
+
String $string, Variant[String[2],Array[String[2], 1]] $format = <default format>)
|
219
|
+
)
|
220
|
+
```
|
221
|
+
|
222
|
+
the arguments may also be passed as a `Hash`:
|
223
|
+
|
224
|
+
```puppet
|
225
|
+
function Timespan.new(
|
226
|
+
Struct[{
|
227
|
+
string => String[1],
|
228
|
+
Optional[format] => Variant[String[2],Array[String[2], 1]]
|
229
|
+
}] $hash
|
230
|
+
)
|
231
|
+
```
|
232
|
+
|
233
|
+
The directive consists of a percent (%) character, zero or more flags, optional minimum field width and
|
234
|
+
a conversion specifier as follows:
|
235
|
+
```
|
236
|
+
%[Flags][Width]Conversion
|
237
|
+
```
|
238
|
+
|
239
|
+
##### Flags:
|
240
|
+
|
241
|
+
| Flag | Meaning
|
242
|
+
| ---- | ---------------
|
243
|
+
| - | Don't pad numerical output
|
244
|
+
| _ | Use spaces for padding
|
245
|
+
| 0 | Use zeros for padding
|
246
|
+
|
247
|
+
##### Format directives:
|
248
|
+
|
249
|
+
| Format | Meaning |
|
250
|
+
| ------ | ------- |
|
251
|
+
| D | Number of Days |
|
252
|
+
| H | Hour of the day, 24-hour clock |
|
253
|
+
| M | Minute of the hour (00..59) |
|
254
|
+
| S | Second of the minute (00..59) |
|
255
|
+
| L | Millisecond of the second (000..999) |
|
256
|
+
| N | Fractional seconds digits |
|
257
|
+
|
258
|
+
The format directive that represents the highest magnitude in the format will be allowed to
|
259
|
+
overflow. I.e. if no "%D" is used but a "%H" is present, then the hours may be more than 23.
|
260
|
+
|
261
|
+
The default array contains the following patterns:
|
262
|
+
|
263
|
+
```
|
264
|
+
['%D-%H:%M:%S', '%D-%H:%M', '%H:%M:%S', '%H:%M']
|
265
|
+
```
|
266
|
+
|
267
|
+
Examples - Converting to Timespan
|
268
|
+
|
269
|
+
```puppet
|
270
|
+
$duration = Timespan(13.5) # 13 seconds and 500 milliseconds
|
271
|
+
$duration = Timespan({days=>4}) # 4 days
|
272
|
+
$duration = Timespan(4, 0, 0, 2) # 4 days and 2 seconds
|
273
|
+
$duration = Timespan('13:20') # 13 hours and 20 minutes (using default pattern)
|
274
|
+
$duration = Timespan('10:03.5', '%M:%S.%L') # 10 minutes, 3 seconds, and 5 milli-seconds
|
275
|
+
$duration = Timespan('10:03.5', '%M:%S.%N') # 10 minutes, 3 seconds, and 5 nano-seconds
|
276
|
+
```
|
277
|
+
|
278
|
+
### Conversion to Timestamp
|
279
|
+
|
280
|
+
A new `Timestamp` can be created from `Integer`, `Float`, `String`, and `Hash` values. Several variants of the constructor are provided.
|
281
|
+
|
282
|
+
#### Timestamp from seconds since epoch (1970-01-01 00:00:00 UTC)
|
283
|
+
|
284
|
+
When a Float is used, the decimal part represents fractions of a second.
|
285
|
+
|
286
|
+
```puppet
|
287
|
+
function Timestamp.new(
|
288
|
+
Variant[Float, Integer] $value
|
289
|
+
)
|
290
|
+
```
|
291
|
+
|
292
|
+
#### Timestamp from String and patterns consisting of format directives
|
293
|
+
|
294
|
+
The first argument is parsed using the format optionally passed as a string or array of strings. When an array is used, an attempt
|
295
|
+
will be made to parse the string using the first entry and then with each entry in succession until parsing succeeds. If the second
|
296
|
+
argument is omitted, an array of default formats will be used.
|
297
|
+
|
298
|
+
A third optional timezone argument can be provided. The first argument will then be parsed as if it represents a local time in that
|
299
|
+
timezone. The timezone can be any timezone that is recognized when using the '%z' or '%Z' formats, or the word 'current', in which
|
300
|
+
case the current timezone of the evaluating process will be used. The timezone argument is case insensitive.
|
301
|
+
|
302
|
+
The default timezone, when no argument is provided, or when using the keyword `default`, is 'UTC'.
|
303
|
+
|
304
|
+
It is illegal to provide a timezone argument other than `default` in combination with a format that contains '%z' or '%Z' since that
|
305
|
+
would introduce an ambiguity as to which timezone to use. The one extracted from the string, or the one provided as an argument.
|
306
|
+
|
307
|
+
An exception is raised when no format was able to parse the given string.
|
308
|
+
|
309
|
+
```puppet
|
310
|
+
function Timestamp.new(
|
311
|
+
String $string,
|
312
|
+
Variant[String[2],Array[String[2], 1]] $format = <default format>,
|
313
|
+
String $timezone = default)
|
314
|
+
)
|
315
|
+
```
|
316
|
+
|
317
|
+
the arguments may also be passed as a `Hash`:
|
318
|
+
|
319
|
+
```puppet
|
320
|
+
function Timestamp.new(
|
321
|
+
Struct[{
|
322
|
+
string => String[1],
|
323
|
+
Optional[format] => Variant[String[2],Array[String[2], 1]],
|
324
|
+
Optional[timezone] => String[1]
|
325
|
+
}] $hash
|
326
|
+
)
|
327
|
+
```
|
328
|
+
|
329
|
+
The directive consists of a percent (%) character, zero or more flags, optional minimum field width and
|
330
|
+
a conversion specifier as follows:
|
331
|
+
```
|
332
|
+
%[Flags][Width]Conversion
|
333
|
+
```
|
334
|
+
|
335
|
+
##### Flags:
|
336
|
+
|
337
|
+
| Flag | Meaning
|
338
|
+
| ---- | ---------------
|
339
|
+
| - | Don't pad numerical output
|
340
|
+
| _ | Use spaces for padding
|
341
|
+
| 0 | Use zeros for padding
|
342
|
+
| # | Change names to upper-case or change case of am/pm
|
343
|
+
| ^ | Use uppercase
|
344
|
+
| : | Use colons for %z
|
345
|
+
|
346
|
+
##### Format directives (names and padding can be altered using flags):
|
347
|
+
|
348
|
+
**Date (Year, Month, Day):**
|
349
|
+
|
350
|
+
| Format | Meaning |
|
351
|
+
| ------ | ------- |
|
352
|
+
| Y | Year with century, zero-padded to at least 4 digits |
|
353
|
+
| C | year / 100 (rounded down such as 20 in 2009) |
|
354
|
+
| y | year % 100 (00..99) |
|
355
|
+
| m | Month of the year, zero-padded (01..12) |
|
356
|
+
| B | The full month name ("January") |
|
357
|
+
| b | The abbreviated month name ("Jan") |
|
358
|
+
| h | Equivalent to %b |
|
359
|
+
| d | Day of the month, zero-padded (01..31) |
|
360
|
+
| e | Day of the month, blank-padded ( 1..31) |
|
361
|
+
| j | Day of the year (001..366) |
|
362
|
+
|
363
|
+
**Time (Hour, Minute, Second, Subsecond):**
|
364
|
+
|
365
|
+
| Format | Meaning |
|
366
|
+
| ------ | ------- |
|
367
|
+
| H | Hour of the day, 24-hour clock, zero-padded (00..23) |
|
368
|
+
| k | Hour of the day, 24-hour clock, blank-padded ( 0..23) |
|
369
|
+
| I | Hour of the day, 12-hour clock, zero-padded (01..12) |
|
370
|
+
| l | Hour of the day, 12-hour clock, blank-padded ( 1..12) |
|
371
|
+
| P | Meridian indicator, lowercase ("am" or "pm") |
|
372
|
+
| p | Meridian indicator, uppercase ("AM" or "PM") |
|
373
|
+
| M | Minute of the hour (00..59) |
|
374
|
+
| S | Second of the minute (00..60) |
|
375
|
+
| L | Millisecond of the second (000..999). Digits under millisecond are truncated to not produce 1000 |
|
376
|
+
| N | Fractional seconds digits, default is 9 digits (nanosecond). Digits under a specified width are truncated to avoid carry up |
|
377
|
+
|
378
|
+
**Time (Hour, Minute, Second, Subsecond):**
|
379
|
+
|
380
|
+
| Format | Meaning |
|
381
|
+
| ------ | ------- |
|
382
|
+
| z | Time zone as hour and minute offset from UTC (e.g. +0900) |
|
383
|
+
| :z | hour and minute offset from UTC with a colon (e.g. +09:00) |
|
384
|
+
| ::z | hour, minute and second offset from UTC (e.g. +09:00:00) |
|
385
|
+
| Z | Abbreviated time zone name or similar information. (OS dependent) |
|
386
|
+
|
387
|
+
**Weekday:**
|
388
|
+
|
389
|
+
| Format | Meaning |
|
390
|
+
| ------ | ------- |
|
391
|
+
| A | The full weekday name ("Sunday") |
|
392
|
+
| a | The abbreviated name ("Sun") |
|
393
|
+
| u | Day of the week (Monday is 1, 1..7) |
|
394
|
+
| w | Day of the week (Sunday is 0, 0..6) |
|
395
|
+
|
396
|
+
**ISO 8601 week-based year and week number:**
|
397
|
+
|
398
|
+
The first week of YYYY starts with a Monday and includes YYYY-01-04.
|
399
|
+
The days in the year before the first week are in the last week of
|
400
|
+
the previous year.
|
401
|
+
|
402
|
+
| Format | Meaning |
|
403
|
+
| ------ | ------- |
|
404
|
+
| G | The week-based year |
|
405
|
+
| g | The last 2 digits of the week-based year (00..99) |
|
406
|
+
| V | Week number of the week-based year (01..53) |
|
407
|
+
|
408
|
+
**Week number:**
|
409
|
+
|
410
|
+
The first week of YYYY that starts with a Sunday or Monday (according to %U
|
411
|
+
or %W). The days in the year before the first week are in week 0.
|
412
|
+
|
413
|
+
| Format | Meaning |
|
414
|
+
| ------ | ------- |
|
415
|
+
| U | Week number of the year. The week starts with Sunday. (00..53) |
|
416
|
+
| W | Week number of the year. The week starts with Monday. (00..53) |
|
417
|
+
|
418
|
+
**Seconds since the Epoch:**
|
419
|
+
|
420
|
+
| Format | Meaning |
|
421
|
+
| s | Number of seconds since 1970-01-01 00:00:00 UTC. |
|
422
|
+
|
423
|
+
**Literal string:**
|
424
|
+
|
425
|
+
| Format | Meaning |
|
426
|
+
| ------ | ------- |
|
427
|
+
| n | Newline character (\n) |
|
428
|
+
| t | Tab character (\t) |
|
429
|
+
| % | Literal "%" character |
|
430
|
+
|
431
|
+
**Combination:**
|
432
|
+
|
433
|
+
| Format | Meaning |
|
434
|
+
| ------ | ------- |
|
435
|
+
| c | date and time (%a %b %e %T %Y) |
|
436
|
+
| D | Date (%m/%d/%y) |
|
437
|
+
| F | The ISO 8601 date format (%Y-%m-%d) |
|
438
|
+
| v | VMS date (%e-%^b-%4Y) |
|
439
|
+
| x | Same as %D |
|
440
|
+
| X | Same as %T |
|
441
|
+
| r | 12-hour time (%I:%M:%S %p) |
|
442
|
+
| R | 24-hour time (%H:%M) |
|
443
|
+
| T | 24-hour time (%H:%M:%S) |
|
444
|
+
|
445
|
+
The default array contains the following patterns:
|
446
|
+
|
447
|
+
When a timezone argument (other than `default`) is explicitly provided:
|
448
|
+
|
449
|
+
```
|
450
|
+
['%FT%T.L', '%FT%T', '%F']
|
451
|
+
```
|
452
|
+
|
453
|
+
otherwise:
|
454
|
+
|
455
|
+
```
|
456
|
+
['%FT%T.%L %Z', '%FT%T %Z', '%F %Z', '%FT%T.L', '%FT%T', '%F']
|
457
|
+
```
|
458
|
+
|
459
|
+
Examples - Converting to Timestamp
|
460
|
+
|
461
|
+
```puppet
|
462
|
+
$ts = Timestamp(1473150899) # 2016-09-06 08:34:59 UTC
|
463
|
+
$ts = Timestamp({string=>'2015', format=>'%Y'}) # 2015-01-01 00:00:00.000 UTC
|
464
|
+
$ts = Timestamp('Wed Aug 24 12:13:14 2016', '%c') # 2016-08-24 12:13:14 UTC
|
465
|
+
$ts = Timestamp('Wed Aug 24 12:13:14 2016 PDT', '%c %Z') # 2016-08-24 19:13:14.000 UTC
|
466
|
+
$ts = Timestamp('2016-08-24 12:13:14', '%F %T', 'PST') # 2016-08-24 20:13:14.000 UTC
|
467
|
+
$ts = Timestamp('2016-08-24T12:13:14', default, 'PST') # 2016-08-24 20:13:14.000 UTC
|
468
|
+
|
469
|
+
```
|
470
|
+
|
471
|
+
### Conversion to Type
|
472
|
+
|
473
|
+
A new `Type` can be create from its `String` representation.
|
474
|
+
|
475
|
+
**Example:** Creating a type from a string
|
476
|
+
|
477
|
+
```puppet
|
478
|
+
$t = Type.new('Integer[10]')
|
479
|
+
```
|
480
|
+
|
481
|
+
### Conversion to String
|
482
|
+
|
483
|
+
Conversion to `String` is the most comprehensive conversion as there are many
|
484
|
+
use cases where a string representation is wanted. The defaults for the many options
|
485
|
+
have been chosen with care to be the most basic "value in textual form" representation.
|
486
|
+
The more advanced forms of formatting are intended to enable writing special purposes formatting
|
487
|
+
functions in the Puppet language.
|
488
|
+
|
489
|
+
A new string can be created from all other data types. The process is performed in
|
490
|
+
several steps - first the data type of the given value is inferred, then the resulting data type
|
491
|
+
is used to find the most significant format specified for that data type. And finally,
|
492
|
+
the found format is used to convert the given value.
|
493
|
+
|
494
|
+
The mapping from data type to format is referred to as the *format map*. This map
|
495
|
+
allows different formatting depending on type.
|
496
|
+
|
497
|
+
**Example:** Positive Integers in Hexadecimal prefixed with '0x', negative in Decimal
|
498
|
+
|
499
|
+
```puppet
|
500
|
+
$format_map = {
|
501
|
+
Integer[default, 0] => "%d",
|
502
|
+
Integer[1, default] => "%#x"
|
503
|
+
}
|
504
|
+
String("-1", $format_map) # produces '-1'
|
505
|
+
String("10", $format_map) # produces '0xa'
|
506
|
+
```
|
507
|
+
|
508
|
+
A format is specified on the form:
|
509
|
+
|
510
|
+
```
|
511
|
+
%[Flags][Width][.Precision]Format
|
512
|
+
```
|
513
|
+
|
514
|
+
`Width` is the number of characters into which the value should be fitted. This allocated space is
|
515
|
+
padded if value is shorter. By default it is space padded, and the flag `0` will cause padding with `0`
|
516
|
+
for numerical formats.
|
517
|
+
|
518
|
+
`Precision` is the number of fractional digits to show for floating point, and the maximum characters
|
519
|
+
included in a string format.
|
520
|
+
|
521
|
+
Note that all data type supports the formats `s` and `p` with the meaning "default string representation" and
|
522
|
+
"default programmatic string representation" (which for example means that a String is quoted in 'p' format).
|
523
|
+
|
524
|
+
#### Signatures of String conversion
|
525
|
+
|
526
|
+
```puppet
|
527
|
+
type Format = Pattern[/^%([\s\+\-#0\[\{<\(\|]*)([1-9][0-9]*)?(?:\.([0-9]+))?([a-zA-Z])/]
|
528
|
+
type ContainerFormat = Struct[{
|
529
|
+
format => Optional[String],
|
530
|
+
separator => Optional[String],
|
531
|
+
separator2 => Optional[String],
|
532
|
+
string_formats => Hash[Type, Format]
|
533
|
+
}]
|
534
|
+
type TypeMap = Hash[Type, Variant[Format, ContainerFormat]]
|
535
|
+
type Formats = Variant[Default, String[1], TypeMap]
|
536
|
+
|
537
|
+
function String.new(
|
538
|
+
Any $value,
|
539
|
+
Formats $string_formats
|
540
|
+
)
|
541
|
+
```
|
542
|
+
|
543
|
+
Where:
|
544
|
+
|
545
|
+
* `separator` is the string used to separate entries in an array, or hash (extra space should not be included at
|
546
|
+
the end), defaults to `","`
|
547
|
+
* `separator2` is the separator between key and value in a hash entry (space padding should be included as
|
548
|
+
wanted), defaults to `" => "`.
|
549
|
+
* `string_formats` is a data type to format map for values contained in arrays and hashes - defaults to `{Any => "%p"}`. Note that
|
550
|
+
these nested formats are not applicable to data types that are containers; they are always formatted as per the top level
|
551
|
+
format specification.
|
552
|
+
|
553
|
+
**Example:** Simple Conversion to String (using defaults)
|
554
|
+
|
555
|
+
```puppet
|
556
|
+
$str = String(10) # produces '10'
|
557
|
+
$str = String([10]) # produces '["10"]'
|
558
|
+
```
|
559
|
+
|
560
|
+
**Example:** Simple Conversion to String specifying the format for the given value directly
|
561
|
+
|
562
|
+
```puppet
|
563
|
+
$str = String(10, "%#x") # produces '0x10'
|
564
|
+
$str = String([10], "%(a") # produces '("10")'
|
565
|
+
```
|
566
|
+
|
567
|
+
**Example:** Specifying type for values contained in an array
|
568
|
+
|
569
|
+
```puppet
|
570
|
+
$formats = {
|
571
|
+
Array => {
|
572
|
+
format => '%(a',
|
573
|
+
string_formats => { Integer => '%#x' }
|
574
|
+
}
|
575
|
+
}
|
576
|
+
$str = String([1,2,3], $formats) # produces '(0x1, 0x2, 0x3)'
|
577
|
+
```
|
578
|
+
|
579
|
+
The given formats are merged with the default formats, and matching of values to convert against format is based on
|
580
|
+
the specificity of the mapped type; for example, different formats can be used for short and long arrays.
|
581
|
+
|
582
|
+
#### Integer to String
|
583
|
+
|
584
|
+
| Format | Integer Formats
|
585
|
+
| ------ | ---------------
|
586
|
+
| d | Decimal, negative values produces leading '-'.
|
587
|
+
| x X | Hexadecimal in lower or upper case. Uses ..f/..F for negative values unless + is also used. A `#` adds prefix 0x/0X.
|
588
|
+
| o | Octal. Uses ..0 for negative values unless `+` is also used. A `#` adds prefix 0.
|
589
|
+
| b B | Binary with prefix 'b' or 'B'. Uses ..1/..1 for negative values unless `+` is also used.
|
590
|
+
| c | Numeric value representing a Unicode value, result is a one unicode character string, quoted if alternative flag # is used
|
591
|
+
| s | Same as d, or d in quotes if alternative flag # is used.
|
592
|
+
| p | Same as d.
|
593
|
+
| eEfgGaA | Converts integer to float and formats using the floating point rules.
|
594
|
+
|
595
|
+
Defaults to `d`.
|
596
|
+
|
597
|
+
#### Float to String
|
598
|
+
|
599
|
+
| Format | Float formats
|
600
|
+
| ------ | -------------
|
601
|
+
| f | Floating point in non exponential notation.
|
602
|
+
| e E | Exponential notation with 'e' or 'E'.
|
603
|
+
| g G | Conditional exponential with 'e' or 'E' if exponent < -4 or >= the precision.
|
604
|
+
| a A | Hexadecimal exponential form, using 'x'/'X' as prefix and 'p'/'P' before exponent.
|
605
|
+
| s | Converted to string using format p, then applying string formatting rule, alternate form # quotes result.
|
606
|
+
| p | Same as f format with minimum significant number of fractional digits, prec has no effect.
|
607
|
+
| dxXobBc | Converts float to integer and formats using the integer rules.
|
608
|
+
|
609
|
+
Defaults to `p`.
|
610
|
+
|
611
|
+
#### String to String
|
612
|
+
|
613
|
+
| Format | String
|
614
|
+
| ------ | ------
|
615
|
+
| s | Unquoted string, verbatim output of control chars.
|
616
|
+
| p | Programmatic representation - strings are quoted, interior quotes and control chars are escaped.
|
617
|
+
| C | Each `::` name segment capitalized, quoted if alternative flag `#` is used.
|
618
|
+
| c | Capitalized string, quoted if alternative flag `#` is used.
|
619
|
+
| d | Downcased string, quoted if alternative flag `#` is used.
|
620
|
+
| u | Upcased string, quoted if alternative flag `#` is used.
|
621
|
+
| t | Trims leading and trailing whitespace from the string, quoted if alternative flag `#` is used.
|
622
|
+
|
623
|
+
Defaults to `s` at top level and `p` inside array or hash.
|
624
|
+
|
625
|
+
#### Boolean to String
|
626
|
+
|
627
|
+
| Format | Boolean Formats
|
628
|
+
| ---- | -------------------
|
629
|
+
| t T | String 'true'/'false' or 'True'/'False', first char if alternate form is used (i.e. 't'/'f' or 'T'/'F').
|
630
|
+
| y Y | String 'yes'/'no', 'Yes'/'No', 'y'/'n' or 'Y'/'N' if alternative flag `#` is used.
|
631
|
+
| dxXobB | Numeric value 0/1 in accordance with the given format which must be valid integer format.
|
632
|
+
| eEfgGaA | Numeric value 0.0/1.0 in accordance with the given float format and flags.
|
633
|
+
| s | String 'true' / 'false'.
|
634
|
+
| p | String 'true' / 'false'.
|
635
|
+
|
636
|
+
#### Regexp to String
|
637
|
+
|
638
|
+
| Format | Regexp Formats
|
639
|
+
| ---- | --------------
|
640
|
+
| s | No delimiters, quoted if alternative flag `#` is used.
|
641
|
+
| p | Delimiters `/ /`.
|
642
|
+
|
643
|
+
#### Undef to String
|
644
|
+
|
645
|
+
| Format | Undef formats
|
646
|
+
| ------ | -------------
|
647
|
+
| s | Empty string, or quoted empty string if alternative flag `#` is used.
|
648
|
+
| p | String 'undef', or quoted '"undef"' if alternative flag `#` is used.
|
649
|
+
| n | String 'nil', or 'null' if alternative flag `#` is used.
|
650
|
+
| dxXobB | String 'NaN'.
|
651
|
+
| eEfgGaA | String 'NaN'.
|
652
|
+
| v | String 'n/a'.
|
653
|
+
| V | String 'N/A'.
|
654
|
+
| u | String 'undef', or 'undefined' if alternative `#` flag is used.
|
655
|
+
|
656
|
+
#### Default value to String
|
657
|
+
|
658
|
+
| Format | Default formats
|
659
|
+
| ------ | ---------------
|
660
|
+
| d D | String 'default' or 'Default', alternative form `#` causes value to be quoted.
|
661
|
+
| s | Same as d.
|
662
|
+
| p | Same as d.
|
663
|
+
|
664
|
+
#### Binary value to String
|
665
|
+
|
666
|
+
| Format | Default formats
|
667
|
+
| ------ | ---------------
|
668
|
+
| s | binary as unquoted UTF-8 characters (errors if byte sequence is invalid UTF-8). Alternate form escapes non ascii bytes.
|
669
|
+
| p | 'Binary("<base64strict>")'
|
670
|
+
| b | '<base64>' - base64 string with newlines inserted
|
671
|
+
| B | '<base64strict>' - base64 strict string (without newlines inserted)
|
672
|
+
| u | '<base64urlsafe>' - base64 urlsafe string
|
673
|
+
| t | 'Binary' - outputs the name of the type only
|
674
|
+
| T | 'BINARY' - output the name of the type in all caps only
|
675
|
+
|
676
|
+
* The alternate form flag `#` will quote the binary or base64 text output.
|
677
|
+
* The format `%#s` allows invalid UTF-8 characters and outputs all non ascii bytes
|
678
|
+
as hex escaped characters on the form `\\xHH` where `H` is a hex digit.
|
679
|
+
* The width and precision values are applied to the text part only in `%p` format.
|
680
|
+
|
681
|
+
#### Array & Tuple to String
|
682
|
+
|
683
|
+
| Format | Array/Tuple Formats
|
684
|
+
| ------ | -------------
|
685
|
+
| a | Formats with `[ ]` delimiters and `,`, alternate form `#` indents nested arrays/hashes.
|
686
|
+
| s | Same as a.
|
687
|
+
| p | Same as a.
|
688
|
+
|
689
|
+
See "Flags" `<[({\|` for formatting of delimiters, and "Additional parameters for containers; Array and Hash" for
|
690
|
+
more information about options.
|
691
|
+
|
692
|
+
The alternate form flag `#` will cause indentation of nested array or hash containers. If width is also set
|
693
|
+
it is taken as the maximum allowed length of a sequence of elements (not including delimiters). If this max length
|
694
|
+
is exceeded, each element will be indented.
|
695
|
+
|
696
|
+
#### Hash & Struct to String
|
697
|
+
|
698
|
+
| Format | Hash/Struct Formats
|
699
|
+
| ------ | -------------
|
700
|
+
| h | Formats with `{ }` delimiters, `,` element separator and ` => ` inner element separator unless overridden by flags.
|
701
|
+
| s | Same as h.
|
702
|
+
| p | Same as h.
|
703
|
+
| a | Converts the hash to an array of [k,v] tuples and formats it using array rule(s).
|
704
|
+
|
705
|
+
See "Flags" `<[({\|` for formatting of delimiters, and "Additional parameters for containers; Array and Hash" for
|
706
|
+
more information about options.
|
707
|
+
|
708
|
+
The alternate form flag `#` will format each hash key/value entry indented on a separate line.
|
709
|
+
|
710
|
+
#### Type to String
|
711
|
+
|
712
|
+
| Format | Array/Tuple Formats
|
713
|
+
| ------ | -------------
|
714
|
+
| s | The same as `p`, quoted if alternative flag `#` is used.
|
715
|
+
| p | Outputs the type in string form as specified by the Puppet Language.
|
716
|
+
|
717
|
+
#### Flags
|
718
|
+
|
719
|
+
| Flag | Effect
|
720
|
+
| ------ | ------
|
721
|
+
| (space) | A space instead of `+` for numeric output (`-` is shown), for containers skips delimiters.
|
722
|
+
| # | Alternate format; prefix 0x/0x, 0 (octal) and 0b/0B for binary, Floats force decimal '.'. For g/G keep trailing 0.
|
723
|
+
| + | Show sign +/- depending on value's sign, changes x, X, o, b, B format to not use 2's complement form.
|
724
|
+
| - | Left justify the value in the given width.
|
725
|
+
| 0 | Pad with 0 instead of space for widths larger than value.
|
726
|
+
| <[({\| | Defines an enclosing pair <> [] () {} or \| \| when used with a container type.
|
727
|
+
|
728
|
+
### Conversion to Boolean
|
729
|
+
|
730
|
+
Accepts a single value as argument:
|
731
|
+
|
732
|
+
* Float 0.0 is `false`, all other float values are `true`
|
733
|
+
* Integer 0 is `false`, all other integer values are `true`
|
734
|
+
* Strings
|
735
|
+
* `true` if 'true', 'yes', 'y' (case independent compare)
|
736
|
+
* `false` if 'false', 'no', 'n' (case independent compare)
|
737
|
+
* Boolean is already boolean and is simply returned
|
738
|
+
|
739
|
+
### Conversion to Array and Tuple
|
740
|
+
|
741
|
+
When given a single value as argument:
|
742
|
+
|
743
|
+
* A non empty `Hash` is converted to an array matching `Array[Tuple[Any,Any], 1]`.
|
744
|
+
* An empty `Hash` becomes an empty array.
|
745
|
+
* An `Array` is simply returned.
|
746
|
+
* An `Iterable[T]` is turned into an array of `T` instances.
|
747
|
+
* A `Binary` is converted to an `Array[Integer[0,255]]` of byte values
|
748
|
+
|
749
|
+
|
750
|
+
When given a second Boolean argument:
|
751
|
+
|
752
|
+
* if `true`, a value that is not already an array is returned as a one element array.
|
753
|
+
* if `false`, (the default), converts the first argument as shown above.
|
754
|
+
|
755
|
+
**Example:** Ensuring value is an array
|
756
|
+
|
757
|
+
```puppet
|
758
|
+
$arr = Array($value, true)
|
759
|
+
```
|
760
|
+
|
761
|
+
Conversion to a `Tuple` works exactly as conversion to an `Array`, only that the constructed array is
|
762
|
+
asserted against the given tuple type.
|
763
|
+
|
764
|
+
### Conversion to Hash and Struct
|
765
|
+
|
766
|
+
Accepts a single value as argument:
|
767
|
+
|
768
|
+
* An empty `Array` becomes an empty `Hash`
|
769
|
+
* An `Array` matching `Array[Tuple[Any,Any], 1]` is converted to a hash where each tuple describes a key/value entry
|
770
|
+
* An `Array` with an even number of entries is interpreted as `[key1, val1, key2, val2, ...]`
|
771
|
+
* An `Iterable` is turned into an `Array` and then converted to hash as per the array rules
|
772
|
+
* A `Hash` is simply returned
|
773
|
+
|
774
|
+
Alternatively, a tree can be constructed by giving two values; an array of tuples on the form `[path, value]`
|
775
|
+
(where the `path` is the path from the root of a tree, and `value` the value at that position in the tree), and
|
776
|
+
either the option `'tree'` (do not convert arrays to hashes except the top level), or
|
777
|
+
`'hash_tree'` (convert all arrays to hashes).
|
778
|
+
|
779
|
+
The tree/hash_tree forms of Hash creation are suited for transforming the result of an iteration
|
780
|
+
using `tree_each` and subsequent filtering or mapping.
|
781
|
+
|
782
|
+
**Example:** Mapping a hash tree
|
783
|
+
|
784
|
+
Mapping an arbitrary structure in a way that keeps the structure, but where some values are replaced
|
785
|
+
can be done by using the `tree_each` function, mapping, and then constructing a new Hash from the result:
|
786
|
+
|
787
|
+
```puppet
|
788
|
+
# A hash tree with 'water' at different locations
|
789
|
+
$h = { a => { b => { x => 'water'}}, b => { y => 'water'} }
|
790
|
+
# a helper function that turns water into wine
|
791
|
+
function make_wine($x) { if $x == 'water' { 'wine' } else { $x } }
|
792
|
+
# create a flattened tree with water turned into wine
|
793
|
+
$flat_tree = $h.tree_each.map |$entry| { [$entry[0], make_wine($entry[1])] }
|
794
|
+
# create a new Hash and log it
|
795
|
+
notice Hash($flat_tree, 'hash_tree')
|
796
|
+
```
|
797
|
+
|
798
|
+
Would notice the hash `{a => {b => {x => wine}}, b => {y => wine}}`
|
799
|
+
|
800
|
+
Conversion to a `Struct` works exactly as conversion to a `Hash`, only that the constructed hash is
|
801
|
+
asserted against the given struct type.
|
802
|
+
|
803
|
+
### Conversion to a Regexp
|
804
|
+
|
805
|
+
A `String` can be converted into a `Regexp`
|
806
|
+
|
807
|
+
**Example**: Converting a String into a Regexp
|
808
|
+
```puppet
|
809
|
+
$s = '[a-z]+\.com'
|
810
|
+
$r = Regexp($s)
|
811
|
+
if('foo.com' =~ $r) {
|
812
|
+
...
|
813
|
+
}
|
814
|
+
```
|
815
|
+
|
816
|
+
### Creating a SemVer
|
817
|
+
|
818
|
+
A SemVer object represents a single [Semantic Version](http://semver.org/).
|
819
|
+
It can be created from a String, individual values for its parts, or a hash specifying the value per part.
|
820
|
+
See the specification at [semver.org](http://semver.org/) for the meaning of the SemVer's parts.
|
821
|
+
|
822
|
+
The signatures are:
|
823
|
+
|
824
|
+
```puppet
|
825
|
+
type PositiveInteger = Integer[0,default]
|
826
|
+
type SemVerQualifier = Pattern[/\A(?<part>[0-9A-Za-z-]+)(?:\.\g<part>)*\Z/]
|
827
|
+
type SemVerString = String[1]
|
828
|
+
type SemVerHash =Struct[{
|
829
|
+
major => PositiveInteger,
|
830
|
+
minor => PositiveInteger,
|
831
|
+
patch => PositiveInteger,
|
832
|
+
Optional[prerelease] => SemVerQualifier,
|
833
|
+
Optional[build] => SemVerQualifier
|
834
|
+
}]
|
835
|
+
|
836
|
+
function SemVer.new(SemVerString $str)
|
837
|
+
|
838
|
+
function SemVer.new(
|
839
|
+
PositiveInteger $major
|
840
|
+
PositiveInteger $minor
|
841
|
+
PositiveInteger $patch
|
842
|
+
Optional[SemVerQualifier] $prerelease = undef
|
843
|
+
Optional[SemVerQualifier] $build = undef
|
844
|
+
)
|
845
|
+
|
846
|
+
function SemVer.new(SemVerHash $hash_args)
|
847
|
+
```
|
848
|
+
|
849
|
+
**Examples:** SemVer and SemVerRange usage
|
850
|
+
|
851
|
+
```puppet
|
852
|
+
# As a type, SemVer can describe disjunct ranges which versions can be
|
853
|
+
# matched against - here the type is constructed with two
|
854
|
+
# SemVerRange objects.
|
855
|
+
#
|
856
|
+
$t = SemVer[
|
857
|
+
SemVerRange('>=1.0.0 <2.0.0'),
|
858
|
+
SemVerRange('>=3.0.0 <4.0.0')
|
859
|
+
]
|
860
|
+
notice(SemVer('1.2.3') =~ $t) # true
|
861
|
+
notice(SemVer('2.3.4') =~ $t) # false
|
862
|
+
notice(SemVer('3.4.5') =~ $t) # true
|
863
|
+
```
|
864
|
+
|
865
|
+
### Creating a SemVerRange
|
866
|
+
|
867
|
+
A `SemVerRange` object represents a range of `SemVer`. It can be created from
|
868
|
+
a `String`, or from two `SemVer` instances, where either end can be given as
|
869
|
+
a literal `default` to indicate infinity. The string format of a `SemVerRange` is specified by
|
870
|
+
the [Semantic Version Range Grammar](https://github.com/npm/node-semver#ranges).
|
871
|
+
|
872
|
+
> Use of the comparator sets described in the grammar (joining with `||`) is not supported.
|
873
|
+
|
874
|
+
The signatures are:
|
875
|
+
|
876
|
+
```puppet
|
877
|
+
type SemVerRangeString = String[1]
|
878
|
+
type SemVerRangeHash = Struct[{
|
879
|
+
min => Variant[Default, SemVer],
|
880
|
+
Optional[max] => Variant[Default, SemVer],
|
881
|
+
Optional[exclude_max] => Boolean
|
882
|
+
}]
|
883
|
+
|
884
|
+
function SemVerRange.new(
|
885
|
+
SemVerRangeString $semver_range_string
|
886
|
+
)
|
887
|
+
|
888
|
+
function SemVerRange.new(
|
889
|
+
Variant[Default,SemVer] $min
|
890
|
+
Variant[Default,SemVer] $max
|
891
|
+
Optional[Boolean] $exclude_max = undef
|
892
|
+
)
|
893
|
+
|
894
|
+
function SemVerRange.new(
|
895
|
+
SemVerRangeHash $semver_range_hash
|
896
|
+
)
|
897
|
+
```
|
898
|
+
|
899
|
+
For examples of `SemVerRange` use, see "Creating a SemVer".
|
900
|
+
|
901
|
+
### Creating a Binary
|
902
|
+
|
903
|
+
A `Binary` object represents a sequence of bytes and it can be created from a String in Base64 format,
|
904
|
+
an Array containing byte values. A Binary can also be created from a Hash containing the value to convert to
|
905
|
+
a `Binary`.
|
906
|
+
|
907
|
+
The signatures are:
|
908
|
+
|
909
|
+
```puppet
|
910
|
+
type ByteInteger = Integer[0,255]
|
911
|
+
type Base64Format = Enum["%b", "%u", "%B", "%s"]
|
912
|
+
type StringHash = Struct[{value => String, "format" => Optional[Base64Format]}]
|
913
|
+
type ArrayHash = Struct[{value => Array[ByteInteger]}]
|
914
|
+
type BinaryArgsHash = Variant[StringHash, ArrayHash]
|
915
|
+
|
916
|
+
function Binary.new(
|
917
|
+
String $base64_str,
|
918
|
+
Optional[Base64Format] $format
|
919
|
+
)
|
920
|
+
|
921
|
+
function Binary.new(
|
922
|
+
Array[ByteInteger] $byte_array
|
923
|
+
}
|
924
|
+
|
925
|
+
# Same as for String, or for Array, but where arguments are given in a Hash.
|
926
|
+
function Binary.new(BinaryArgsHash $hash_args)
|
927
|
+
```
|
928
|
+
|
929
|
+
The formats have the following meaning:
|
930
|
+
|
931
|
+
| format | explanation |
|
932
|
+
| ---- | ---- |
|
933
|
+
| B | The data is in base64 strict encoding
|
934
|
+
| u | The data is in URL safe base64 encoding
|
935
|
+
| b | The data is in base64 encoding, padding as required by base64 strict, is added by default
|
936
|
+
| s | The data is a puppet string. The string must be valid UTF-8, or convertible to UTF-8 or an error is raised.
|
937
|
+
| r | (Ruby Raw) the byte sequence in the given string is used verbatim irrespective of possible encoding errors
|
938
|
+
|
939
|
+
* The default format is `%B`.
|
940
|
+
* Note that the format `%r` should be used sparingly, or not at all. It exists for backwards compatibility reasons when someone receiving
|
941
|
+
a string from some function and that string should be treated as Binary. Such code should be changed to return a Binary instead of a String.
|
942
|
+
|
943
|
+
**Examples:** Creating a Binary
|
944
|
+
|
945
|
+
```puppet
|
946
|
+
# create the binary content "abc"
|
947
|
+
$a = Binary('YWJj')
|
948
|
+
|
949
|
+
# create the binary content from content in a module's file
|
950
|
+
$b = binary_file('mymodule/mypicture.jpg')
|
951
|
+
```
|
952
|
+
|
953
|
+
* Since 4.5.0
|
954
|
+
* Binary type since 4.8.0
|
955
|
+
|
956
|
+
Creating an instance of a `Type` using the `Init` type.
|
957
|
+
-------
|
958
|
+
|
959
|
+
The type `Init[T]` describes a value that can be used when instantiating a type. When used as the first argument in a call to `new`, it
|
960
|
+
will dispatch the call to its contained type and optionally augment the parameter list with additional arguments.
|
961
|
+
|
962
|
+
**Example:** Creating an instance of Integer using Init[Integer]
|
963
|
+
|
964
|
+
```puppet
|
965
|
+
# The following declaration
|
966
|
+
$x = Init[Integer].new('128')
|
967
|
+
# is exactly the same as
|
968
|
+
$x = Integer.new('128')
|
969
|
+
```
|
970
|
+
|
971
|
+
or, with base 16 and using implicit new
|
972
|
+
|
973
|
+
```puppet
|
974
|
+
# The following declaration
|
975
|
+
$x = Init[Integer,16]('80')
|
976
|
+
# is exactly the same as
|
977
|
+
$x = Integer('80', 16)
|
978
|
+
```
|
979
|
+
|
980
|
+
**Example:** Creating an instance of String using a predefined format
|
981
|
+
|
982
|
+
```puppet
|
983
|
+
$fmt = Init[String,'%#x']
|
984
|
+
notice($fmt(256)) # will notice '0x100'
|
985
|
+
```
|
986
|
+
|
987
|
+
DOC
|
988
|
+
) do |args|
|
989
|
+
Puppet::Parser::Functions::Error.is4x('new')
|
990
|
+
end
|
991
|
+
|