===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
puppet-5.5.22/lib/puppet/face/epp.rb-253-      `facter`, or from puppet for a given node). Note that it is not possible to simulate the
puppet-5.5.22/lib/puppet/face/epp.rb:254:      reserved variable name `$facts` in any other way.
puppet-5.5.22/lib/puppet/face/epp.rb-255-
##############################################
puppet-5.5.22/lib/puppet/face/man.rb-22-  notes <<-EOT
puppet-5.5.22/lib/puppet/face/man.rb:23:    The pager used for display will be the first found of `$MANPAGER`, `$PAGER`,
puppet-5.5.22/lib/puppet/face/man.rb-24-    `less`, `most`, or `more`.
##############################################
puppet-5.5.22/lib/puppet/functions/all.rb-12-#
puppet-5.5.22/lib/puppet/functions/all.rb:13:# `$data.all |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/functions/all.rb-14-#
##############################################
puppet-5.5.22/lib/puppet/functions/all.rb-16-#
puppet-5.5.22/lib/puppet/functions/all.rb:17:# `all($data) |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/functions/all.rb-18-#
##############################################
puppet-5.5.22/lib/puppet/functions/any.rb-12-#
puppet-5.5.22/lib/puppet/functions/any.rb:13:# `$data.any |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/functions/any.rb-14-#
##############################################
puppet-5.5.22/lib/puppet/functions/any.rb-16-#
puppet-5.5.22/lib/puppet/functions/any.rb:17:# `any($data) |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/functions/any.rb-18-#
##############################################
puppet-5.5.22/lib/puppet/functions/any.rb-29-# one of the keys. That is, it is equivalent to the expression
puppet-5.5.22/lib/puppet/functions/any.rb:30:# `$looked_up[routers] || $looked_up[servers] || $looked_up[workstations]`.
puppet-5.5.22/lib/puppet/functions/any.rb-31-#
##############################################
puppet-5.5.22/lib/puppet/functions/defined.rb-6-# This function takes at least one string argument, which can be a class name, type name,
puppet-5.5.22/lib/puppet/functions/defined.rb:7:# resource reference, or variable reference of the form `'$name'`. (Note that the `$` sign
puppet-5.5.22/lib/puppet/functions/defined.rb-8-# is included in the string which must be in single quotes to prevent the `$` character
##############################################
puppet-5.5.22/lib/puppet/functions/each.rb-11-#
puppet-5.5.22/lib/puppet/functions/each.rb:12:# `$data.each |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/functions/each.rb-13-#
##############################################
puppet-5.5.22/lib/puppet/functions/each.rb-15-#
puppet-5.5.22/lib/puppet/functions/each.rb:16:# `each($data) |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/functions/each.rb-17-#
puppet-5.5.22/lib/puppet/functions/each.rb:18:# When the first argument (`$data` in the above example) is an array, Puppet passes each
puppet-5.5.22/lib/puppet/functions/each.rb-19-# value in turn to the lambda, then returns the original values.
##############################################
puppet-5.5.22/lib/puppet/functions/flatten.rb-13-# To flatten other kinds of iterables (for example hashes, or intermediate results like from a `reverse_each`)
puppet-5.5.22/lib/puppet/functions/flatten.rb:14:# first convert the result to an array using `Array($x)`, or `$x.convert_to(Array)`. See the `new` function
puppet-5.5.22/lib/puppet/functions/flatten.rb-15-# for details and options when performing a conversion.
##############################################
puppet-5.5.22/lib/puppet/functions/lookup.rb-20-# * `lookup( [<NAME>], <OPTIONS HASH> )`
puppet-5.5.22/lib/puppet/functions/lookup.rb:21:# * `lookup( as above ) |$key| { # lambda returns a default value }`
puppet-5.5.22/lib/puppet/functions/lookup.rb-22-#
##############################################
puppet-5.5.22/lib/puppet/functions/map.rb-11-#
puppet-5.5.22/lib/puppet/functions/map.rb:12:# `$transformed_data = $data.map |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/functions/map.rb-13-#
##############################################
puppet-5.5.22/lib/puppet/functions/map.rb-15-#
puppet-5.5.22/lib/puppet/functions/map.rb:16:# `$transformed_data = map($data) |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/functions/map.rb-17-#
puppet-5.5.22/lib/puppet/functions/map.rb:18:# When the first argument (`$data` in the above example) is an array, Puppet passes each
puppet-5.5.22/lib/puppet/functions/map.rb-19-# value in turn to the lambda.
##############################################
puppet-5.5.22/lib/puppet/functions/reduce.rb-17-#
puppet-5.5.22/lib/puppet/functions/reduce.rb:18:# `$data.reduce |$memo, $value| { ... }`
puppet-5.5.22/lib/puppet/functions/reduce.rb-19-#
##############################################
puppet-5.5.22/lib/puppet/functions/reduce.rb-21-#
puppet-5.5.22/lib/puppet/functions/reduce.rb:22:# `reduce($data) |$memo, $value| { ... }`
puppet-5.5.22/lib/puppet/functions/reduce.rb-23-#
##############################################
puppet-5.5.22/lib/puppet/functions/reduce.rb-25-#
puppet-5.5.22/lib/puppet/functions/reduce.rb:26:# `$data.reduce(start) |$memo, $value| { ... }`
puppet-5.5.22/lib/puppet/functions/reduce.rb-27-#
##############################################
puppet-5.5.22/lib/puppet/functions/reduce.rb-29-#
puppet-5.5.22/lib/puppet/functions/reduce.rb:30:# `reduce($data, start) |$memo, $value| { ... }`
puppet-5.5.22/lib/puppet/functions/reduce.rb-31-#
puppet-5.5.22/lib/puppet/functions/reduce.rb:32:# When the first argument (`$data` in the above example) is an array, Puppet passes each
puppet-5.5.22/lib/puppet/functions/reduce.rb-33-# of the data structure's values in turn to the lambda's parameters. When the first
##############################################
puppet-5.5.22/lib/puppet/functions/reduce.rb-41-# Puppet calls the lambda for each of the data structure's remaining values. For each
puppet-5.5.22/lib/puppet/functions/reduce.rb:42:# call, it passes the result of the previous call as the first parameter (`$memo` in the
puppet-5.5.22/lib/puppet/functions/reduce.rb-43-# above examples) and the next value from the data structure as the second parameter
puppet-5.5.22/lib/puppet/functions/reduce.rb:44:# (`$value`).
puppet-5.5.22/lib/puppet/functions/reduce.rb-45-#
##############################################
puppet-5.5.22/lib/puppet/functions/split.rb-11-#
puppet-5.5.22/lib/puppet/functions/split.rb:12:# #`$array_var1` now holds the result `['v1.v2', 'v3.v4']`,
puppet-5.5.22/lib/puppet/functions/split.rb:13:# # while `$array_var2` holds `['v1', 'v2:v3', 'v4']`, and
puppet-5.5.22/lib/puppet/functions/split.rb:14:# # `$array_var3` holds `['v1', 'v2', 'v3', 'v4']`.
puppet-5.5.22/lib/puppet/functions/split.rb-15-# ```
##############################################
puppet-5.5.22/lib/puppet/functions/tree_each.rb-17-# 3. An optional lambda, which the function calls for each element in the first argument. It must
puppet-5.5.22/lib/puppet/functions/tree_each.rb:18:#    accept one or two arguments; either `$path`, and `$value`, or just `$value`.
puppet-5.5.22/lib/puppet/functions/tree_each.rb-19-#
##############################################
puppet-5.5.22/lib/puppet/functions/tree_each.rb-21-#
puppet-5.5.22/lib/puppet/functions/tree_each.rb:22:# `$data.tree_each |$path, $value| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/functions/tree_each.rb:23:# `$data.tree_each |$value| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/functions/tree_each.rb-24-#
##############################################
puppet-5.5.22/lib/puppet/functions/tree_each.rb-26-#
puppet-5.5.22/lib/puppet/functions/tree_each.rb:27:# `tree_each($data) |$path, $value| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/functions/tree_each.rb:28:# `tree_each($data) |$value| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/functions/tree_each.rb-29-#
puppet-5.5.22/lib/puppet/functions/tree_each.rb:30:# The parameter `$path` is always given as an `Array` containing the path that when applied to
puppet-5.5.22/lib/puppet/functions/tree_each.rb:31:# the tree as `$data.dig(*$path) yields the `$value`.
puppet-5.5.22/lib/puppet/functions/tree_each.rb:32:# The `$value` is the value at that path.
puppet-5.5.22/lib/puppet/functions/tree_each.rb-33-#
##############################################
puppet-5.5.22/lib/puppet/functions/type.rb-20-#
puppet-5.5.22/lib/puppet/functions/type.rb:21:# The optional argument `$fidelity` may be given as (from lowest to highest fidelity):
puppet-5.5.22/lib/puppet/functions/type.rb-22-#
##############################################
puppet-5.5.22/lib/puppet/functions/unique.rb-64-# equality lambda (or the default value equality if no lambda was given). This makes the `unique` function more versatile for hashes
puppet-5.5.22/lib/puppet/functions/unique.rb:65:# in general, while requiring that the simple computation of "hash's unique set of values" is performed as `$hsh.map |$k, $v| { $v }.unique`.
puppet-5.5.22/lib/puppet/functions/unique.rb-66-# (A unique set of hash keys is in general meaningless (since they are unique by definition) - although if processed with a different
##############################################
puppet-5.5.22/lib/puppet/functions/dig.rb-21-#
puppet-5.5.22/lib/puppet/functions/dig.rb:22:# This is roughly equivalent to `$data['a']['b'][1]['x']`. However, a standard
puppet-5.5.22/lib/puppet/functions/dig.rb-23-# index will return an error and cause catalog compilation failure if any parent
##############################################
puppet-5.5.22/lib/puppet/functions/filter.rb-12-#
puppet-5.5.22/lib/puppet/functions/filter.rb:13:# `$filtered_data = $data.filter |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/functions/filter.rb-14-#
##############################################
puppet-5.5.22/lib/puppet/functions/filter.rb-16-#
puppet-5.5.22/lib/puppet/functions/filter.rb:17:# `$filtered_data = filter($data) |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/functions/filter.rb-18-#
puppet-5.5.22/lib/puppet/functions/filter.rb:19:# When the first argument (`$data` in the above example) is an array, Puppet passes each
puppet-5.5.22/lib/puppet/functions/filter.rb-20-# value in turn to the lambda and returns an array containing the results.
##############################################
puppet-5.5.22/lib/puppet/settings.rb-1343-
puppet-5.5.22/lib/puppet/settings.rb:1344:    # Lookup the interpolated value. All instances of `$name` in the value will
puppet-5.5.22/lib/puppet/settings.rb-1345-    # be replaced by performing a lookup of `name` and substituting the text
puppet-5.5.22/lib/puppet/settings.rb:1346:    # for `$name` in the original value. This interpolation is only performed
puppet-5.5.22/lib/puppet/settings.rb-1347-    # if the looked up value is a String.
##############################################
puppet-5.5.22/lib/puppet/parser/functions/defined.rb-11-This function takes at least one string argument, which can be a class name, type name,
puppet-5.5.22/lib/puppet/parser/functions/defined.rb:12:resource reference, or variable reference of the form `'$name'`.
puppet-5.5.22/lib/puppet/parser/functions/defined.rb-13-
##############################################
puppet-5.5.22/lib/puppet/parser/functions/dig.rb-27-
puppet-5.5.22/lib/puppet/parser/functions/dig.rb:28:This is roughly equivalent to `$data['a']['b'][1]['x']`. However, a standard
puppet-5.5.22/lib/puppet/parser/functions/dig.rb-29-index will return an error and cause catalog compilation failure if any parent
##############################################
puppet-5.5.22/lib/puppet/parser/functions/each.rb-16-
puppet-5.5.22/lib/puppet/parser/functions/each.rb:17:`$data.each |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/parser/functions/each.rb-18-
##############################################
puppet-5.5.22/lib/puppet/parser/functions/each.rb-20-
puppet-5.5.22/lib/puppet/parser/functions/each.rb:21:`each($data) |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/parser/functions/each.rb-22-
puppet-5.5.22/lib/puppet/parser/functions/each.rb:23:When the first argument (`$data` in the above example) is an array, Puppet passes each
puppet-5.5.22/lib/puppet/parser/functions/each.rb-24-value in turn to the lambda, then returns the original values.
##############################################
puppet-5.5.22/lib/puppet/parser/functions/fqdn_rand.rb-8-  Generates a random Integer number greater than or equal to 0 and less than MAX,
puppet-5.5.22/lib/puppet/parser/functions/fqdn_rand.rb:9:  combining the `$fqdn` fact and the value of SEED for repeatable randomness.
puppet-5.5.22/lib/puppet/parser/functions/fqdn_rand.rb-10-  (That is, each node will get a different random number from this function, but
##############################################
puppet-5.5.22/lib/puppet/parser/functions/hiera_include.rb-82-| ----  | ---|
puppet-5.5.22/lib/puppet/parser/functions/hiera_include.rb:83:| hiera_include($key) | include(lookup($key, { 'merge' => 'unique' })) |
puppet-5.5.22/lib/puppet/parser/functions/hiera_include.rb:84:| hiera_include($key, $default) | include(lookup($key, { 'default_value' => $default, 'merge' => 'unique' })) |
puppet-5.5.22/lib/puppet/parser/functions/hiera_include.rb:85:| hiera_include($key, $default, $level) | override level not supported |
puppet-5.5.22/lib/puppet/parser/functions/hiera_include.rb-86-
##############################################
puppet-5.5.22/lib/puppet/parser/functions/lookup.rb-22-* `lookup( [<NAME>], <OPTIONS HASH> )`
puppet-5.5.22/lib/puppet/parser/functions/lookup.rb:23:* `lookup( as above ) |$key| { # lambda returns a default value }`
puppet-5.5.22/lib/puppet/parser/functions/lookup.rb-24-
##############################################
puppet-5.5.22/lib/puppet/parser/functions/map.rb-16-
puppet-5.5.22/lib/puppet/parser/functions/map.rb:17:`$transformed_data = $data.map |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/parser/functions/map.rb-18-
##############################################
puppet-5.5.22/lib/puppet/parser/functions/map.rb-20-
puppet-5.5.22/lib/puppet/parser/functions/map.rb:21:`$transformed_data = map($data) |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/parser/functions/map.rb-22-
puppet-5.5.22/lib/puppet/parser/functions/map.rb:23:When the first argument (`$data` in the above example) is an array, Puppet passes each
puppet-5.5.22/lib/puppet/parser/functions/map.rb-24-value in turn to the lambda.
##############################################
puppet-5.5.22/lib/puppet/parser/functions/reduce.rb-22-
puppet-5.5.22/lib/puppet/parser/functions/reduce.rb:23:`$data.reduce |$memo, $value| { ... }`
puppet-5.5.22/lib/puppet/parser/functions/reduce.rb-24-
##############################################
puppet-5.5.22/lib/puppet/parser/functions/reduce.rb-26-
puppet-5.5.22/lib/puppet/parser/functions/reduce.rb:27:`reduce($data) |$memo, $value| { ... }`
puppet-5.5.22/lib/puppet/parser/functions/reduce.rb-28-
##############################################
puppet-5.5.22/lib/puppet/parser/functions/reduce.rb-30-
puppet-5.5.22/lib/puppet/parser/functions/reduce.rb:31:`$data.reduce(start) |$memo, $value| { ... }`
puppet-5.5.22/lib/puppet/parser/functions/reduce.rb-32-
##############################################
puppet-5.5.22/lib/puppet/parser/functions/reduce.rb-34-
puppet-5.5.22/lib/puppet/parser/functions/reduce.rb:35:`reduce($data, start) |$memo, $value| { ... }`
puppet-5.5.22/lib/puppet/parser/functions/reduce.rb-36-
puppet-5.5.22/lib/puppet/parser/functions/reduce.rb:37:When the first argument (`$data` in the above example) is an array, Puppet passes each
puppet-5.5.22/lib/puppet/parser/functions/reduce.rb-38-of the data structure's values in turn to the lambda's parameters. When the first
##############################################
puppet-5.5.22/lib/puppet/parser/functions/split.rb-16-
puppet-5.5.22/lib/puppet/parser/functions/split.rb:17:`$array_var1` now holds the result `['v1.v2', 'v3.v4']`,
puppet-5.5.22/lib/puppet/parser/functions/split.rb:18:while `$array_var2` holds `['v1', 'v2:v3', 'v4']`, and
puppet-5.5.22/lib/puppet/parser/functions/split.rb:19:`$array_var3` holds `['v1', 'v2', 'v3', 'v4']`.
puppet-5.5.22/lib/puppet/parser/functions/split.rb-20-
##############################################
puppet-5.5.22/lib/puppet/parser/functions/type.rb-25-
puppet-5.5.22/lib/puppet/parser/functions/type.rb:26: The optional argument `$fidelity` may be given as (from lowest to highest fidelity):
puppet-5.5.22/lib/puppet/parser/functions/type.rb-27-
##############################################
puppet-5.5.22/lib/puppet/parser/functions/filter.rb-17-
puppet-5.5.22/lib/puppet/parser/functions/filter.rb:18:`$filtered_data = $data.filter |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/parser/functions/filter.rb-19-
##############################################
puppet-5.5.22/lib/puppet/parser/functions/filter.rb-21-
puppet-5.5.22/lib/puppet/parser/functions/filter.rb:22:`$filtered_data = filter($data) |$parameter| { <PUPPET CODE BLOCK> }`
puppet-5.5.22/lib/puppet/parser/functions/filter.rb-23-
puppet-5.5.22/lib/puppet/parser/functions/filter.rb:24:When the first argument (`$data` in the above example) is an array, Puppet passes each
puppet-5.5.22/lib/puppet/parser/functions/filter.rb-25-value in turn to the lambda and returns an array containing the results.
##############################################
puppet-5.5.22/lib/puppet/pops/evaluator/evaluator_impl.rb-1075-  # Note that this is different from the 3.x implementation, where an initial qualified name
puppet-5.5.22/lib/puppet/pops/evaluator/evaluator_impl.rb:1076:  # is accepted. (e.g. `"---${var + 1}---"` is legal. This implementation requires such concrete
puppet-5.5.22/lib/puppet/pops/evaluator/evaluator_impl.rb-1077-  # syntax to be expressed in a model as `(TextExpression (+ (Variable var) 1)` - i.e. moving the decision to
##############################################
puppet-5.5.22/lib/puppet/reference/configuration.rb-65-  results in "Error: Could not parse application options: needless argument".)
puppet-5.5.22/lib/puppet/reference/configuration.rb:66:* Settings can be interpolated as `$variables` in other settings; `$environment`
puppet-5.5.22/lib/puppet/reference/configuration.rb-67-  is special, in that puppet master will interpolate each agent node's
##############################################
puppet-5.5.22/lib/puppet/transaction/resource_harness.rb-141-    rescue => detail
puppet-5.5.22/lib/puppet/transaction/resource_harness.rb:142:      # Execution will continue on StandardErrors, just store the event
puppet-5.5.22/lib/puppet/transaction/resource_harness.rb-143-      Puppet.log_exception(detail)
##############################################
puppet-5.5.22/lib/puppet/transaction/resource_harness.rb-151-    rescue Exception => detail
puppet-5.5.22/lib/puppet/transaction/resource_harness.rb:152:      # Execution will halt on Exceptions, they get raised to the application
puppet-5.5.22/lib/puppet/transaction/resource_harness.rb-153-      event = create_change_event(param, current_value, historical_value)
##############################################
puppet-5.5.22/lib/puppet/type/augeas.rb-120-    * `rename <PATH> <LABEL>` --- Rename a node at `PATH` to a new `LABEL`
puppet-5.5.22/lib/puppet/type/augeas.rb:121:    * `defvar <NAME> <PATH>` --- Sets Augeas variable `$NAME` to `PATH`
puppet-5.5.22/lib/puppet/type/augeas.rb:122:    * `defnode <NAME> <PATH> <VALUE>` --- Sets Augeas variable `$NAME` to `PATH`, creating it with `VALUE` if needed
puppet-5.5.22/lib/puppet/type/augeas.rb-123-
##############################################
puppet-5.5.22/lib/puppet/type/augeas.rb-133-  newparam(:load_path) do
puppet-5.5.22/lib/puppet/type/augeas.rb:134:    desc "Optional colon-separated list or array of directories; these directories are searched for schema definitions. The agent's `$libdir/augeas/lenses` path will always be added to support pluginsync."
puppet-5.5.22/lib/puppet/type/augeas.rb-135-    defaultto ""
##############################################
puppet-5.5.22/lib/puppet/vendor.rb-16-  # At runtime, the #load_vendored method should be called. It will ensure
puppet-5.5.22/lib/puppet/vendor.rb:17:  # all vendored libraries are added to the global `$:` path, and
puppet-5.5.22/lib/puppet/vendor.rb-18-  # will then call execute the up-front loading specified in `vendor/require_vendored.rb`.
##############################################
puppet-5.5.22/lib/puppet/application.rb-174-    # Upon block execution, checks the run status again; if a restart has been requested during the block's
puppet-5.5.22/lib/puppet/application.rb:175:    # execution, then controlled_run will send a new HUP signal to the current process.
puppet-5.5.22/lib/puppet/application.rb-176-    # Thus, long-running background processes can potentially finish their work before a restart.
##############################################
puppet-5.5.22/lib/puppet/application.rb-219-    # class. The code for the application is expected to live in a ruby file
puppet-5.5.22/lib/puppet/application.rb:220:    # `puppet/application/#{name}.rb` that is available on the `$LOAD_PATH`.
puppet-5.5.22/lib/puppet/application.rb-221-    #
##############################################
puppet-5.5.22/lib/puppet/defaults.rb-365-        This setting must have a value set to enable **directory environments.** The
puppet-5.5.22/lib/puppet/defaults.rb:366:        recommended value is `$codedir/environments`. For more details, see
puppet-5.5.22/lib/puppet/defaults.rb-367-        <https://puppet.com/docs/puppet/latest/environments_about.html>",
##############################################
puppet-5.5.22/lib/puppet/defaults.rb-735-
puppet-5.5.22/lib/puppet/defaults.rb:736:        A node's certname is available in Puppet manifests as `$trusted['certname']`. (See
puppet-5.5.22/lib/puppet/defaults.rb-737-        [Facts and Built-In Variables](https://puppet.com/docs/puppet/latest/lang_facts_and_builtin_vars.html)
##############################################
puppet-5.5.22/lib/puppet/defaults.rb-1211-        directory environments instead. If you need to use something other than the
puppet-5.5.22/lib/puppet/defaults.rb:1212:        default modulepath of `<ACTIVE ENVIRONMENT'S MODULES DIR>:$basemodulepath`,
puppet-5.5.22/lib/puppet/defaults.rb-1213-        you can set `modulepath` in environment.conf. For more info, see
##############################################
puppet-5.5.22/lib/puppet/defaults.rb-1708-      :desc       => "The maximum time to delay before an agent's first run when
puppet-5.5.22/lib/puppet/defaults.rb:1709:        `splay` is enabled. Defaults to the agent's `$runinterval`. The
puppet-5.5.22/lib/puppet/defaults.rb-1710-        `splay` interval is random and recalculated each time the agent is started or
##############################################
puppet-5.5.22/lib/puppet/defaults.rb-1716-      :desc       => "Whether to sleep for a random amount of time, ranging from
puppet-5.5.22/lib/puppet/defaults.rb:1717:        immediately up to its `$splaylimit`, before performing its first agent run
puppet-5.5.22/lib/puppet/defaults.rb-1718-        after a service restart. After this period, the agent runs periodically
puppet-5.5.22/lib/puppet/defaults.rb:1719:        on its `$runinterval`.
puppet-5.5.22/lib/puppet/defaults.rb-1720-
puppet-5.5.22/lib/puppet/defaults.rb:1721:        For example, assume a default 30-minute `$runinterval`, `splay` set to its
puppet-5.5.22/lib/puppet/defaults.rb-1722-        default of `false`, and an agent starting at :00 past the hour. The agent
##############################################
puppet-5.5.22/lib/puppet/defaults.rb-1724-
puppet-5.5.22/lib/puppet/defaults.rb:1725:        With `splay` enabled, it waits any amount of time up to its `$splaylimit`
puppet-5.5.22/lib/puppet/defaults.rb-1726-        before its first run. For example, it might randomly wait 8 minutes,
puppet-5.5.22/lib/puppet/defaults.rb:1727:        then start its first run at :08 past the hour. With the `$runinterval`
puppet-5.5.22/lib/puppet/defaults.rb-1728-        at its default 30 minutes, its next run will be at :38 past the hour.
##############################################
puppet-5.5.22/ext/ips/puppet-agent-25-  # http://bnsmb.de/solaris/My_Little_SMF_FAQ.html
puppet-5.5.22/ext/ips/puppet-agent:26:  ctid=`svcprop -p restarter/contract "$SMF_FMRI"`
puppet-5.5.22/ext/ips/puppet-agent-27-  if [ -n "$ctid" ]; then
##############################################
puppet-5.5.22/ext/ips/puppet-master-25-
puppet-5.5.22/ext/ips/puppet-master:26:  ctid=`svcprop -p restarter/contract "$SMF_FMRI"`
puppet-5.5.22/ext/ips/puppet-master-27-  if [ -n "$ctid" ]; then
##############################################
puppet-5.5.22/ext/osx/postflight.erb-38-function scan_users () {
puppet-5.5.22/ext/osx/postflight.erb:39:  UniqueIDS=(`"${dscl}" -f "${dspath}" localonly  list /Local/Target/Users UniqueID | $awk '{print $2}'`);
puppet-5.5.22/ext/osx/postflight.erb-40-
##############################################
puppet-5.5.22/ext/osx/postflight.erb-57-function scan_groups () {
puppet-5.5.22/ext/osx/postflight.erb:58:  GroupIDS=(`"${dscl}" -f "${dspath}" localonly list /Local/Target/Groups PrimaryGroupID | $awk '{print $2}'`);
puppet-5.5.22/ext/osx/postflight.erb-59-  #check for 52 for group, if it's free, take it, don't bother doing the big search
##############################################
puppet-5.5.22/ext/osx/postflight.erb-86-  #storing the existing UID/GID to set permissions for /var/lib/puppet and /etc/puppet/puppet.conf
puppet-5.5.22/ext/osx/postflight.erb:87:  last_group_id=`"${dscl}" -f "${dspath}" localonly -read /Local/Target/Groups/puppet PrimaryGroupID | awk '{print $2}'`
puppet-5.5.22/ext/osx/postflight.erb:88:  last_user_id=`"${dscl}" -f "${dspath}" localonly -read /Local/Target/Users/puppet UniqueID | awk '{print $2}'`
puppet-5.5.22/ext/osx/postflight.erb-89-elif [ $pgroup_exists == '0' ] && [ $puser_exists == '56' ]; then
puppet-5.5.22/ext/osx/postflight.erb-90-  #puppet group exists, but user does not
puppet-5.5.22/ext/osx/postflight.erb:91:  last_group_id=`"${dscl}" -f "${dspath}" localonly -read /Local/Target/Groups/puppet PrimaryGroupID | awk '{print $2}'`
puppet-5.5.22/ext/osx/postflight.erb-92-  scan_users
##############################################
puppet-5.5.22/ext/osx/postflight.erb-96-  #puppet user exists, but group does not
puppet-5.5.22/ext/osx/postflight.erb:97:  last_user_id=`"${dscl}" -f "${dspath}" localonly -read /Local/Target/Users/puppet UniqueID | awk '{print $2}'`
puppet-5.5.22/ext/osx/postflight.erb-98-  scan_groups
##############################################
puppet-5.5.22/ext/redhat/client.init-102-      if [ -n "${pid}" ]; then
puppet-5.5.22/ext/redhat/client.init:103:        if `ps -p $pid | grep $pid > /dev/null 2>&1`; then
puppet-5.5.22/ext/redhat/client.init-104-          echo "${base} (pid ${pid}) is running..."
##############################################
puppet-5.5.22/ext/redhat/puppet.spec-316-  if [ -e "$newpid" ]; then
puppet-5.5.22/ext/redhat/puppet.spec:317:    if ps aux | grep `cat "$newpid"` | grep -v grep | awk '{ print $12 }' | grep -q sbin; then
puppet-5.5.22/ext/redhat/puppet.spec-318-      (kill $(< "$newpid") && rm -f "$newpid" && \
##############################################
puppet-5.5.22/ext/solaris/smf/puppet-25-  # http://bnsmb.de/solaris/My_Little_SMF_FAQ.html
puppet-5.5.22/ext/solaris/smf/puppet:26:  ctid=`svcprop -p restarter/contract "$SMF_FMRI"`
puppet-5.5.22/ext/solaris/smf/puppet-27-  if [ -n "$ctid" ]; then
##############################################
puppet-5.5.22/ext/solaris/smf/svc-puppetd-37-    printf "Stopping Puppet client services:"
puppet-5.5.22/ext/solaris/smf/svc-puppetd:38:    kill `cat "$pidfile"`
puppet-5.5.22/ext/solaris/smf/svc-puppetd-39-
##############################################
puppet-5.5.22/ext/solaris/smf/svc-puppetd-44-    printf "Restarting Puppet client services:"
puppet-5.5.22/ext/solaris/smf/svc-puppetd:45:    kill -HUP `cat "$pidfile"`
puppet-5.5.22/ext/solaris/smf/svc-puppetd-46-
##############################################
puppet-5.5.22/ext/solaris/smf/svc-puppetd-52-
puppet-5.5.22/ext/solaris/smf/svc-puppetd:53:    kill -HUP `cat "$pidfile"`
puppet-5.5.22/ext/solaris/smf/svc-puppetd-54-
##############################################
puppet-5.5.22/ext/solaris/smf/svc-puppetd-59-    if [ -f "$pidfile" ]; then
puppet-5.5.22/ext/solaris/smf/svc-puppetd:60:        pid=`cat "$pidfile"`
puppet-5.5.22/ext/solaris/smf/svc-puppetd-61-        curpid=`pgrep puppetd`
##############################################
puppet-5.5.22/ext/solaris/smf/svc-puppetmasterd-33-    printf "Stopping Puppet server services:"
puppet-5.5.22/ext/solaris/smf/svc-puppetmasterd:34:    kill `cat "$pidfile"`
puppet-5.5.22/ext/solaris/smf/svc-puppetmasterd-35-
##############################################
puppet-5.5.22/ext/solaris/smf/svc-puppetmasterd-40-    printf "Restarting Puppet server services:"
puppet-5.5.22/ext/solaris/smf/svc-puppetmasterd:41:    kill -HUP `cat "$pidfile"`
puppet-5.5.22/ext/solaris/smf/svc-puppetmasterd-42-
##############################################
puppet-5.5.22/ext/solaris/smf/svc-puppetmasterd-48-
puppet-5.5.22/ext/solaris/smf/svc-puppetmasterd:49:    kill -HUP `cat "$pidfile"`
puppet-5.5.22/ext/solaris/smf/svc-puppetmasterd-50-
##############################################
puppet-5.5.22/ext/solaris/smf/svc-puppetmasterd-55-    if [ -f "$pidfile" ]; then
puppet-5.5.22/ext/solaris/smf/svc-puppetmasterd:56:        pid=`cat "$pidfile"`
puppet-5.5.22/ext/solaris/smf/svc-puppetmasterd-57-        curpid=`pgrep puppetmasterd`
##############################################
puppet-5.5.22/spec/unit/parser/functions/shellquote_spec.rb-43-  it "should deal with apostrophes (single quotes)" do
puppet-5.5.22/spec/unit/parser/functions/shellquote_spec.rb:44:    expect(scope.function_shellquote(["'foo'bar'", "`$'EDITOR'`"])).
puppet-5.5.22/spec/unit/parser/functions/shellquote_spec.rb:45:      to eq('"\'foo\'bar\'" "\\`\\$\'EDITOR\'\\`"')
puppet-5.5.22/spec/unit/parser/functions/shellquote_spec.rb-46-  end
##############################################
puppet-5.5.22/spec/unit/parser/functions/shellquote_spec.rb-48-  it "should cope with grave accents (backquotes)" do
puppet-5.5.22/spec/unit/parser/functions/shellquote_spec.rb:49:    expect(scope.function_shellquote(['`echo *`', '`ls "$MAILPATH"`'])).
puppet-5.5.22/spec/unit/parser/functions/shellquote_spec.rb:50:      to eq("'`echo *`' '`ls \"$MAILPATH\"`'")
puppet-5.5.22/spec/unit/parser/functions/shellquote_spec.rb-51-  end
##############################################
puppet-5.5.22/spec/unit/provider/nameservice/directoryservice_spec.rb-66-    # key that contains a base64 encoded salted-SHA512 password hash...
puppet-5.5.22/spec/unit/provider/nameservice/directoryservice_spec.rb:67:    let (:binary_plist) { "bplist00\324\001\002\003\004\005\006\a\bXCRAM-MD5RNT]SALTED-SHA512[RECOVERABLEO\020 \231k2\3360\200GI\201\355J\216\202\215y\243\001\206J\300\363\032\031\022\006\2359\024\257\217<\361O\020\020F\353\at\377\277\226\276c\306\254\031\037J(\235O\020D\335\006{\3744g@\377z\204\322\r\332t\021\330\n\003\246K\223\356\034!P\261\305t\035\346\352p\206\003n\247MMA\310\301Z<\366\246\023\0161W3\340\357\000\317T\t\301\311+\204\246L7\276\370\320*\245O\021\002\000k\024\221\270x\353\001\237\346D}\377?\265]\356+\243\v[\350\316a\340h\376<\322\266\327\016\306n\272r\t\212A\253L\216\214\205\016\241 [\360/\335\002#\\A\372\241a\261\346\346\\\251\330\312\365\016\n\341\017\016\225&;\322\\\004*\ru\316\372\a \362?8\031\247\231\030\030\267\315\023\v\343{@\227\301s\372h\212\000a\244&\231\366\nt\277\2036,\027bZ+\223W\212g\333`\264\331N\306\307\362\257(^~ b\262\247&\231\261t\341\231%\244\247\203eOt\365\271\201\273\330\350\363C^A\327F\214!\217hgf\e\320k\260n\315u~\336\371M\t\235k\230S\375\311\303\240\351\037d\273\321y\335=K\016`_\317\230\2612_\023K\036\350\v\232\323Y\310\317_\035\227%\237\v\340\023\016\243\233\025\306:\227\351\370\364x\234\231\266\367\016w\275\333-\351\210}\375x\034\262\272kRuHa\362T/F!\347B\231O`K\304\037'k$$\245h)e\363\365mT\b\317\\2\361\026\351\254\375Jl1~\r\371\267\352\2322I\341\272\376\243^Un\266E7\230[VocUJ\220N\2116D/\025f=\213\314\325\vG}\311\360\377DT\307m\261&\263\340\272\243_\020\271rG^BW\210\030l\344\0324\335\233\300\023\272\225Im\330\n\227*Yv[\006\315\330y'\a\321\373\273A\240\305F{S\246I#/\355\2425\031\031GGF\270y\n\331\004\023G@\331\000\361\343\350\264$\032\355_\210y\000\205\342\375\212q\024\004\026W:\205 \363v?\035\270L-\270=\022\323\2003\v\336\277\t\237\356\374\n\267n\003\367\342\330;\371S\326\016`B6@Njm>\240\021%\336\345\002(P\204Yn\3279l\0228\264\254\304\2528t\372h\217\347sA\314\345\245\337)]\000\b\000\021\000\032\000\035\000+\0007\000Z\000m\000\264\000\000\000\000\000\000\002\001\000\000\000\000\000\000\000\t\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\270" }
puppet-5.5.22/spec/unit/provider/nameservice/directoryservice_spec.rb-68-
##############################################
puppet-5.5.22/spec/unit/type/nagios_spec.rb-73-            command_name  nagios_table_size
puppet-5.5.22/spec/unit/type/nagios_spec.rb:74:            command_line $USER3$/check_mysql_health --hostname localhost --username nagioschecks --password nagiosCheckPWD --mode sql --name "SELECT ROUND(Data_length/1024) as Data_kBytes from INFORMATION_SCHEMA.TABLES where TABLE_NAME=\"$ARG1$\"\;" --name2 "table size" --units kBytes -w $ARG2$ -c $ARG3$
puppet-5.5.22/spec/unit/type/nagios_spec.rb-75-        }
##############################################
puppet-5.5.22/spec/unit/type/nagios_spec.rb-146-      results = parser.parse(ESCAPED_SEMICOLON)
puppet-5.5.22/spec/unit/type/nagios_spec.rb:147:      expect(results[0].command_line).to eql("$USER3$/check_mysql_health --hostname localhost --username nagioschecks --password nagiosCheckPWD --mode sql --name \"SELECT ROUND(Data_length/1024) as Data_kBytes from INFORMATION_SCHEMA.TABLES where TABLE_NAME=\\\"$ARG1$\\\";\" --name2 \"table size\" --units kBytes -w $ARG2$ -c $ARG3$")
puppet-5.5.22/spec/unit/type/nagios_spec.rb-148-    end
##############################################
puppet-5.5.22/spec/unit/type/nagios_spec.rb-217-  it "should escape ';'" do
puppet-5.5.22/spec/unit/type/nagios_spec.rb:218:    param = '$USER3$/check_mysql_health --hostname localhost --username nagioschecks --password nagiosCheckPWD --mode sql --name "SELECT ROUND(Data_length/1024) as Data_kBytes from INFORMATION_SCHEMA.TABLES where TABLE_NAME=\"$ARG1$\";" --name2 "table size" --units kBytes -w $ARG2$ -c $ARG3$'
puppet-5.5.22/spec/unit/type/nagios_spec.rb-219-    nagios_type = Nagios::Base.create(:command)
puppet-5.5.22/spec/unit/type/nagios_spec.rb-220-    nagios_type.command_line = param
puppet-5.5.22/spec/unit/type/nagios_spec.rb:221:    expect(nagios_type.to_s).to eql("define command {\n\tcommand_line                   $USER3$/check_mysql_health --hostname localhost --username nagioschecks --password nagiosCheckPWD --mode sql --name \"SELECT ROUND(Data_length/1024) as Data_kBytes from INFORMATION_SCHEMA.TABLES where TABLE_NAME=\\\"$ARG1$\\\"\\;\" --name2 \"table size\" --units kBytes -w $ARG2$ -c $ARG3$\n}\n")
puppet-5.5.22/spec/unit/type/nagios_spec.rb-222-  end
##############################################
puppet-5.5.22/spec/unit/type/nagios_spec.rb-231-  it "should be idempotent" do
puppet-5.5.22/spec/unit/type/nagios_spec.rb:232:    param = '$USER3$/check_mysql_health --hostname localhost --username nagioschecks --password nagiosCheckPWD --mode sql --name "SELECT ROUND(Data_length/1024) as Data_kBytes from INFORMATION_SCHEMA.TABLES where TABLE_NAME=\"$ARG1$\";" --name2 "table size" --units kBytes -w $ARG2$ -c $ARG3$'
puppet-5.5.22/spec/unit/type/nagios_spec.rb-233-    nagios_type = Nagios::Base.create(:command)
##############################################
puppet-5.5.22/spec/unit/util/rdoc_spec.rb-37-    it "should tell RDoc to exclude all files under any modules/<mod>/files section" do
puppet-5.5.22/spec/unit/util/rdoc_spec.rb:38:      expect(@rdoc).to receive(:document).with(include("--exclude").and(include("/modules/[^/]*/files/.*$")))
puppet-5.5.22/spec/unit/util/rdoc_spec.rb-39-
##############################################
puppet-5.5.22/spec/unit/util/rdoc_spec.rb-43-    it "should tell RDoc to exclude all files under any modules/<mod>/templates section" do
puppet-5.5.22/spec/unit/util/rdoc_spec.rb:44:      expect(@rdoc).to receive(:document).with(include("--exclude").and(include("/modules/[^/]*/templates/.*$")))
puppet-5.5.22/spec/unit/util/rdoc_spec.rb-45-
##############################################
puppet-5.5.22/debian/patches/0006-Fix-service-listing-and-enable-disable-in-Debian.patch-62-   def disable
puppet-5.5.22/debian/patches/0006-Fix-service-listing-and-enable-disable-in-Debian.patch:63:-    if `dpkg --compare-versions $(dpkg-query -W --showformat '${Version}' sysv-rc) ge 2.88 ; echo $?`.to_i == 0
puppet-5.5.22/debian/patches/0006-Fix-service-listing-and-enable-disable-in-Debian.patch-64--      update_rc @resource[:name], "disable"
##############################################
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-365-        This setting must have a value set to enable **directory environments.** The
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb:366:        recommended value is `$codedir/environments`. For more details, see
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-367-        <https://puppet.com/docs/puppet/latest/environments_about.html>",
##############################################
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-735-
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb:736:        A node's certname is available in Puppet manifests as `$trusted['certname']`. (See
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-737-        [Facts and Built-In Variables](https://puppet.com/docs/puppet/latest/lang_facts_and_builtin_vars.html)
##############################################
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-1211-        directory environments instead. If you need to use something other than the
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb:1212:        default modulepath of `<ACTIVE ENVIRONMENT'S MODULES DIR>:$basemodulepath`,
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-1213-        you can set `modulepath` in environment.conf. For more info, see
##############################################
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-1708-      :desc       => "The maximum time to delay before an agent's first run when
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb:1709:        `splay` is enabled. Defaults to the agent's `$runinterval`. The
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-1710-        `splay` interval is random and recalculated each time the agent is started or
##############################################
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-1716-      :desc       => "Whether to sleep for a random amount of time, ranging from
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb:1717:        immediately up to its `$splaylimit`, before performing its first agent run
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-1718-        after a service restart. After this period, the agent runs periodically
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb:1719:        on its `$runinterval`.
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-1720-
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb:1721:        For example, assume a default 30-minute `$runinterval`, `splay` set to its
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-1722-        default of `false`, and an agent starting at :00 past the hour. The agent
##############################################
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-1724-
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb:1725:        With `splay` enabled, it waits any amount of time up to its `$splaylimit`
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-1726-        before its first run. For example, it might randomly wait 8 minutes,
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb:1727:        then start its first run at :08 past the hour. With the `$runinterval`
puppet-5.5.22/.pc/0001-Adjust-default-paths.patch/lib/puppet/defaults.rb-1728-        at its default 30 minutes, its next run will be at :38 past the hour.
##############################################
puppet-5.5.22/.pc/0005-debian-service-provider-use-service.patch/lib/puppet/provider/service/debian.rb-24-  def disable
puppet-5.5.22/.pc/0005-debian-service-provider-use-service.patch/lib/puppet/provider/service/debian.rb:25:    if `dpkg --compare-versions $(dpkg-query -W --showformat '${Version}' sysv-rc) ge 2.88 ; echo $?`.to_i == 0
puppet-5.5.22/.pc/0005-debian-service-provider-use-service.patch/lib/puppet/provider/service/debian.rb-26-      update_rc @resource[:name], "disable"
##############################################
puppet-5.5.22/.pc/0006-Fix-service-listing-and-enable-disable-in-Debian.patch/lib/puppet/provider/service/debian.rb-24-  def disable
puppet-5.5.22/.pc/0006-Fix-service-listing-and-enable-disable-in-Debian.patch/lib/puppet/provider/service/debian.rb:25:    if `dpkg --compare-versions $(dpkg-query -W --showformat '${Version}' sysv-rc) ge 2.88 ; echo $?`.to_i == 0
puppet-5.5.22/.pc/0006-Fix-service-listing-and-enable-disable-in-Debian.patch/lib/puppet/provider/service/debian.rb-26-      update_rc @resource[:name], "disable"
##############################################
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-365-        This setting must have a value set to enable **directory environments.** The
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb:366:        recommended value is `$codedir/environments`. For more details, see
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-367-        <https://puppet.com/docs/puppet/latest/environments_about.html>",
##############################################
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-735-
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb:736:        A node's certname is available in Puppet manifests as `$trusted['certname']`. (See
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-737-        [Facts and Built-In Variables](https://puppet.com/docs/puppet/latest/lang_facts_and_builtin_vars.html)
##############################################
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-1211-        directory environments instead. If you need to use something other than the
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb:1212:        default modulepath of `<ACTIVE ENVIRONMENT'S MODULES DIR>:$basemodulepath`,
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-1213-        you can set `modulepath` in environment.conf. For more info, see
##############################################
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-1708-      :desc       => "The maximum time to delay before an agent's first run when
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb:1709:        `splay` is enabled. Defaults to the agent's `$runinterval`. The
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-1710-        `splay` interval is random and recalculated each time the agent is started or
##############################################
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-1716-      :desc       => "Whether to sleep for a random amount of time, ranging from
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb:1717:        immediately up to its `$splaylimit`, before performing its first agent run
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-1718-        after a service restart. After this period, the agent runs periodically
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb:1719:        on its `$runinterval`.
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-1720-
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb:1721:        For example, assume a default 30-minute `$runinterval`, `splay` set to its
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-1722-        default of `false`, and an agent starting at :00 past the hour. The agent
##############################################
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-1724-
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb:1725:        With `splay` enabled, it waits any amount of time up to its `$splaylimit`
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-1726-        before its first run. For example, it might randomly wait 8 minutes,
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb:1727:        then start its first run at :08 past the hour. With the `$runinterval`
puppet-5.5.22/.pc/0008-reproducible-build.patch/lib/puppet/defaults.rb-1728-        at its default 30 minutes, its next run will be at :38 past the hour.
##############################################
puppet-mode-0.4/CHANGES.md-36-
puppet-mode-0.4/CHANGES.md:37:    - Fix fontification of variables referenced from top-scope, e.g. `$::foo`
puppet-mode-0.4/CHANGES.md-38-    - Fix duplicate and misplaced entries in Imenu
##############################################
puppet-mode-0.4/README.md-65-For the integration with puppet-debugger to work, the puppet-debugger gem needs
puppet-mode-0.4/README.md:66:to be installed and available in your `$PATH`.
puppet-mode-0.4/README.md-67-See [the instructions][puppet debugger install instructions] on