puppet 4.4.0-universal-darwin

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of puppet might be problematic. Click here for more details.

Files changed (2548) hide show
  1. checksums.yaml +7 -0
  2. data/COMMITTERS.md +244 -0
  3. data/CONTRIBUTING.md +116 -0
  4. data/Gemfile +92 -0
  5. data/LICENSE +17 -0
  6. data/README.md +75 -0
  7. data/Rakefile +97 -0
  8. data/bin/extlookup2hiera +56 -0
  9. data/bin/puppet +9 -0
  10. data/conf/auth.conf +124 -0
  11. data/conf/environment.conf +18 -0
  12. data/conf/fileserver.conf +42 -0
  13. data/conf/puppet.conf +6 -0
  14. data/examples/hiera/README.md +91 -0
  15. data/examples/hiera/etc/hiera.yaml +15 -0
  16. data/examples/hiera/etc/hieradb/common.yaml +3 -0
  17. data/examples/hiera/etc/hieradb/dc1.yaml +6 -0
  18. data/examples/hiera/etc/hieradb/development.yaml +2 -0
  19. data/examples/hiera/etc/puppet.conf +3 -0
  20. data/examples/hiera/modules/data/manifests/common.pp +4 -0
  21. data/examples/hiera/modules/ntp/manifests/config.pp +6 -0
  22. data/examples/hiera/modules/ntp/manifests/data.pp +4 -0
  23. data/examples/hiera/modules/ntp/templates/ntp.conf.erb +3 -0
  24. data/examples/hiera/modules/users/manifests/common.pp +4 -0
  25. data/examples/hiera/modules/users/manifests/dc1.pp +4 -0
  26. data/examples/hiera/modules/users/manifests/development.pp +4 -0
  27. data/examples/hiera/site.pp +3 -0
  28. data/ext/README.environment +8 -0
  29. data/ext/autotest/Rakefile +8 -0
  30. data/ext/autotest/config +43 -0
  31. data/ext/autotest/readme.rst +16 -0
  32. data/ext/build_defaults.yaml +20 -0
  33. data/ext/cert_inspector +140 -0
  34. data/ext/dbfix.sql +132 -0
  35. data/ext/debian/README.Debian +8 -0
  36. data/ext/debian/README.source +2 -0
  37. data/ext/debian/TODO.Debian +1 -0
  38. data/ext/debian/changelog.erb +1122 -0
  39. data/ext/debian/compat +1 -0
  40. data/ext/debian/control +146 -0
  41. data/ext/debian/copyright +361 -0
  42. data/ext/debian/docs +1 -0
  43. data/ext/debian/fileserver.conf +41 -0
  44. data/ext/debian/puppet-common.dirs +13 -0
  45. data/ext/debian/puppet-common.install +4 -0
  46. data/ext/debian/puppet-common.lintian-overrides +5 -0
  47. data/ext/debian/puppet-common.manpages +30 -0
  48. data/ext/debian/puppet-common.postinst +35 -0
  49. data/ext/debian/puppet-common.postrm +33 -0
  50. data/ext/debian/puppet-el.dirs +1 -0
  51. data/ext/debian/puppet-el.emacsen-install +25 -0
  52. data/ext/debian/puppet-el.emacsen-remove +11 -0
  53. data/ext/debian/puppet-el.emacsen-startup +9 -0
  54. data/ext/debian/puppet-el.install +1 -0
  55. data/ext/debian/puppet-testsuite.install +2 -0
  56. data/ext/debian/puppet-testsuite.lintian-overrides +4 -0
  57. data/ext/debian/puppet.default +4 -0
  58. data/ext/debian/puppet.init +113 -0
  59. data/ext/debian/puppet.lintian-overrides +3 -0
  60. data/ext/debian/puppet.logrotate +20 -0
  61. data/ext/debian/puppet.postinst +20 -0
  62. data/ext/debian/puppet.postrm +20 -0
  63. data/ext/debian/puppet.preinst +20 -0
  64. data/ext/debian/puppetmaster-common.install +2 -0
  65. data/ext/debian/puppetmaster-common.manpages +2 -0
  66. data/ext/debian/puppetmaster-common.postinst +6 -0
  67. data/ext/debian/puppetmaster-passenger.dirs +4 -0
  68. data/ext/debian/puppetmaster-passenger.postinst +162 -0
  69. data/ext/debian/puppetmaster-passenger.postrm +61 -0
  70. data/ext/debian/puppetmaster.README.debian +17 -0
  71. data/ext/debian/puppetmaster.default +14 -0
  72. data/ext/debian/puppetmaster.init +137 -0
  73. data/ext/debian/puppetmaster.lintian-overrides +3 -0
  74. data/ext/debian/puppetmaster.postinst +20 -0
  75. data/ext/debian/puppetmaster.postrm +5 -0
  76. data/ext/debian/puppetmaster.preinst +22 -0
  77. data/ext/debian/rules +132 -0
  78. data/ext/debian/source/format +1 -0
  79. data/ext/debian/source/options +1 -0
  80. data/ext/debian/vim-puppet.README.Debian +13 -0
  81. data/ext/debian/vim-puppet.dirs +5 -0
  82. data/ext/debian/vim-puppet.yaml +7 -0
  83. data/ext/debian/watch +2 -0
  84. data/ext/emacs/puppet-mode-init.el +6 -0
  85. data/ext/emacs/puppet-mode.el +433 -0
  86. data/ext/envpuppet +139 -0
  87. data/ext/envpuppet.bat +14 -0
  88. data/ext/freebsd/puppetd +26 -0
  89. data/ext/freebsd/puppetmasterd +26 -0
  90. data/ext/gentoo/conf.d/puppet +5 -0
  91. data/ext/gentoo/conf.d/puppetmaster +12 -0
  92. data/ext/gentoo/init.d/puppet +38 -0
  93. data/ext/gentoo/init.d/puppetmaster +51 -0
  94. data/ext/gentoo/puppet/fileserver.conf +41 -0
  95. data/ext/ips/puppet-agent +44 -0
  96. data/ext/ips/puppet-master +44 -0
  97. data/ext/ips/puppet.p5m.erb +12 -0
  98. data/ext/ips/puppetagent.xml +42 -0
  99. data/ext/ips/puppetmaster.xml +42 -0
  100. data/ext/ips/rules +19 -0
  101. data/ext/ips/transforms +34 -0
  102. data/ext/ldap/puppet.schema +24 -0
  103. data/ext/logcheck/puppet +23 -0
  104. data/ext/nagios/check_puppet.rb +123 -0
  105. data/ext/osx/file_mapping.yaml +33 -0
  106. data/ext/osx/postflight.erb +109 -0
  107. data/ext/osx/preflight.erb +52 -0
  108. data/ext/osx/prototype.plist.erb +38 -0
  109. data/ext/osx/puppet.plist +30 -0
  110. data/ext/project_data.yaml +57 -0
  111. data/ext/puppet-nm-dispatcher +13 -0
  112. data/ext/puppet-test +500 -0
  113. data/ext/puppetlisten/puppetlisten.rb +77 -0
  114. data/ext/puppetlisten/puppetrun.rb +38 -0
  115. data/ext/pure_ruby_dsl/dsl_test.rb +7 -0
  116. data/ext/rack/config.ru +44 -0
  117. data/ext/rack/example-passenger-vhost.conf +57 -0
  118. data/ext/redhat/client.init +169 -0
  119. data/ext/redhat/client.sysconfig +2 -0
  120. data/ext/redhat/fileserver.conf +41 -0
  121. data/ext/redhat/logrotate +21 -0
  122. data/ext/redhat/puppet.spec.erb +858 -0
  123. data/ext/redhat/server.init +128 -0
  124. data/ext/redhat/server.sysconfig +13 -0
  125. data/ext/regexp_nodes/classes/databases +2 -0
  126. data/ext/regexp_nodes/classes/webservers +2 -0
  127. data/ext/regexp_nodes/environment/development +2 -0
  128. data/ext/regexp_nodes/parameters/service/prod +1 -0
  129. data/ext/regexp_nodes/parameters/service/qa +3 -0
  130. data/ext/regexp_nodes/parameters/service/sandbox +1 -0
  131. data/ext/regexp_nodes/regexp_nodes.rb +271 -0
  132. data/ext/solaris/pkginfo +6 -0
  133. data/ext/solaris/smf/puppet +44 -0
  134. data/ext/solaris/smf/puppet.xml +44 -0
  135. data/ext/solaris/smf/puppetd.xml +77 -0
  136. data/ext/solaris/smf/puppetmasterd.xml +77 -0
  137. data/ext/solaris/smf/svc-puppetd +64 -0
  138. data/ext/solaris/smf/svc-puppetmasterd +60 -0
  139. data/ext/suse/client.init +141 -0
  140. data/ext/suse/puppet.spec +310 -0
  141. data/ext/suse/server.init +173 -0
  142. data/ext/systemd/puppet.service +15 -0
  143. data/ext/upload_facts.rb +119 -0
  144. data/ext/vim/README +3 -0
  145. data/ext/vim/ftdetect/puppet.vim +2 -0
  146. data/ext/vim/ftplugin/puppet.vim +94 -0
  147. data/ext/vim/indent/puppet.vim +76 -0
  148. data/ext/vim/syntax/puppet.vim +115 -0
  149. data/ext/windows/eventlog/Rakefile +32 -0
  150. data/ext/windows/eventlog/puppetres.dll +0 -0
  151. data/ext/windows/eventlog/puppetres.mc +18 -0
  152. data/ext/windows/puppet_interactive.bat +6 -0
  153. data/ext/windows/puppet_shell.bat +9 -0
  154. data/ext/windows/run_puppet_interactive.bat +9 -0
  155. data/ext/windows/service/daemon.bat +6 -0
  156. data/ext/windows/service/daemon.rb +192 -0
  157. data/ext/yaml_nodes.rb +105 -0
  158. data/install.rb +477 -0
  159. data/lib/hiera/puppet_function.rb +82 -0
  160. data/lib/hiera/scope.rb +63 -0
  161. data/lib/hiera_puppet.rb +87 -0
  162. data/lib/puppet.rb +286 -0
  163. data/lib/puppet/agent.rb +102 -0
  164. data/lib/puppet/agent/disabler.rb +53 -0
  165. data/lib/puppet/agent/locker.rb +52 -0
  166. data/lib/puppet/application.rb +462 -0
  167. data/lib/puppet/application/agent.rb +457 -0
  168. data/lib/puppet/application/apply.rb +352 -0
  169. data/lib/puppet/application/ca.rb +10 -0
  170. data/lib/puppet/application/catalog.rb +4 -0
  171. data/lib/puppet/application/cert.rb +297 -0
  172. data/lib/puppet/application/certificate.rb +17 -0
  173. data/lib/puppet/application/certificate_request.rb +7 -0
  174. data/lib/puppet/application/certificate_revocation_list.rb +7 -0
  175. data/lib/puppet/application/config.rb +4 -0
  176. data/lib/puppet/application/describe.rb +254 -0
  177. data/lib/puppet/application/device.rb +256 -0
  178. data/lib/puppet/application/doc.rb +226 -0
  179. data/lib/puppet/application/epp.rb +5 -0
  180. data/lib/puppet/application/face_base.rb +269 -0
  181. data/lib/puppet/application/facts.rb +4 -0
  182. data/lib/puppet/application/file.rb +4 -0
  183. data/lib/puppet/application/filebucket.rb +258 -0
  184. data/lib/puppet/application/help.rb +4 -0
  185. data/lib/puppet/application/indirection_base.rb +4 -0
  186. data/lib/puppet/application/inspect.rb +179 -0
  187. data/lib/puppet/application/key.rb +4 -0
  188. data/lib/puppet/application/lookup.rb +354 -0
  189. data/lib/puppet/application/man.rb +4 -0
  190. data/lib/puppet/application/master.rb +321 -0
  191. data/lib/puppet/application/module.rb +4 -0
  192. data/lib/puppet/application/node.rb +4 -0
  193. data/lib/puppet/application/parser.rb +5 -0
  194. data/lib/puppet/application/plugin.rb +3 -0
  195. data/lib/puppet/application/report.rb +4 -0
  196. data/lib/puppet/application/resource.rb +228 -0
  197. data/lib/puppet/application/resource_type.rb +7 -0
  198. data/lib/puppet/application/status.rb +4 -0
  199. data/lib/puppet/application_support.rb +57 -0
  200. data/lib/puppet/bindings.rb +147 -0
  201. data/lib/puppet/coercion.rb +40 -0
  202. data/lib/puppet/configurer.rb +389 -0
  203. data/lib/puppet/configurer/downloader.rb +67 -0
  204. data/lib/puppet/configurer/downloader_factory.rb +34 -0
  205. data/lib/puppet/configurer/fact_handler.rb +37 -0
  206. data/lib/puppet/configurer/plugin_handler.rb +27 -0
  207. data/lib/puppet/confine.rb +80 -0
  208. data/lib/puppet/confine/any.rb +26 -0
  209. data/lib/puppet/confine/exists.rb +19 -0
  210. data/lib/puppet/confine/false.rb +19 -0
  211. data/lib/puppet/confine/feature.rb +17 -0
  212. data/lib/puppet/confine/true.rb +20 -0
  213. data/lib/puppet/confine/variable.rb +59 -0
  214. data/lib/puppet/confine_collection.rb +50 -0
  215. data/lib/puppet/confiner.rb +46 -0
  216. data/lib/puppet/context.rb +116 -0
  217. data/lib/puppet/context/trusted_information.rb +76 -0
  218. data/lib/puppet/daemon.rb +195 -0
  219. data/lib/puppet/data_binding.rb +14 -0
  220. data/lib/puppet/data_providers.rb +30 -0
  221. data/lib/puppet/data_providers/data_adapter.rb +30 -0
  222. data/lib/puppet/data_providers/data_function_support.rb +24 -0
  223. data/lib/puppet/data_providers/function_env_data_provider.rb +18 -0
  224. data/lib/puppet/data_providers/function_module_data_provider.rb +17 -0
  225. data/lib/puppet/data_providers/hiera_config.rb +131 -0
  226. data/lib/puppet/data_providers/hiera_env_data_provider.rb +18 -0
  227. data/lib/puppet/data_providers/hiera_interpolate.rb +112 -0
  228. data/lib/puppet/data_providers/hiera_module_data_provider.rb +23 -0
  229. data/lib/puppet/data_providers/hiera_support.rb +37 -0
  230. data/lib/puppet/data_providers/json_data_provider_factory.rb +31 -0
  231. data/lib/puppet/data_providers/lookup_adapter.rb +247 -0
  232. data/lib/puppet/data_providers/yaml_data_provider_factory.rb +32 -0
  233. data/lib/puppet/defaults.rb +1823 -0
  234. data/lib/puppet/environments.rb +487 -0
  235. data/lib/puppet/error.rb +100 -0
  236. data/lib/puppet/external/dot.rb +326 -0
  237. data/lib/puppet/external/nagios.rb +46 -0
  238. data/lib/puppet/external/nagios/base.rb +472 -0
  239. data/lib/puppet/external/nagios/grammar.ry +248 -0
  240. data/lib/puppet/external/nagios/makefile +9 -0
  241. data/lib/puppet/external/nagios/parser.rb +400 -0
  242. data/lib/puppet/external/pson/common.rb +370 -0
  243. data/lib/puppet/external/pson/pure.rb +15 -0
  244. data/lib/puppet/external/pson/pure/generator.rb +395 -0
  245. data/lib/puppet/external/pson/pure/parser.rb +307 -0
  246. data/lib/puppet/external/pson/version.rb +8 -0
  247. data/lib/puppet/face.rb +12 -0
  248. data/lib/puppet/face/ca.rb +254 -0
  249. data/lib/puppet/face/catalog.rb +130 -0
  250. data/lib/puppet/face/catalog/select.rb +49 -0
  251. data/lib/puppet/face/certificate.rb +159 -0
  252. data/lib/puppet/face/certificate_request.rb +54 -0
  253. data/lib/puppet/face/certificate_revocation_list.rb +54 -0
  254. data/lib/puppet/face/config.rb +119 -0
  255. data/lib/puppet/face/epp.rb +479 -0
  256. data/lib/puppet/face/facts.rb +38 -0
  257. data/lib/puppet/face/file.rb +47 -0
  258. data/lib/puppet/face/file/download.rb +56 -0
  259. data/lib/puppet/face/file/store.rb +21 -0
  260. data/lib/puppet/face/help.rb +193 -0
  261. data/lib/puppet/face/help/action.erb +86 -0
  262. data/lib/puppet/face/help/face.erb +111 -0
  263. data/lib/puppet/face/help/global.erb +16 -0
  264. data/lib/puppet/face/help/man.erb +152 -0
  265. data/lib/puppet/face/key.rb +15 -0
  266. data/lib/puppet/face/man.rb +99 -0
  267. data/lib/puppet/face/module.rb +19 -0
  268. data/lib/puppet/face/module/build.rb +63 -0
  269. data/lib/puppet/face/module/changes.rb +42 -0
  270. data/lib/puppet/face/module/generate.rb +251 -0
  271. data/lib/puppet/face/module/install.rb +145 -0
  272. data/lib/puppet/face/module/list.rb +275 -0
  273. data/lib/puppet/face/module/search.rb +94 -0
  274. data/lib/puppet/face/module/uninstall.rb +78 -0
  275. data/lib/puppet/face/module/upgrade.rb +86 -0
  276. data/lib/puppet/face/node.rb +42 -0
  277. data/lib/puppet/face/node/clean.rb +96 -0
  278. data/lib/puppet/face/parser.rb +161 -0
  279. data/lib/puppet/face/plugin.rb +58 -0
  280. data/lib/puppet/face/report.rb +54 -0
  281. data/lib/puppet/face/resource.rb +53 -0
  282. data/lib/puppet/face/resource_type.rb +84 -0
  283. data/lib/puppet/face/status.rb +48 -0
  284. data/lib/puppet/feature/base.rb +87 -0
  285. data/lib/puppet/feature/cfacter.rb +15 -0
  286. data/lib/puppet/feature/cfpropertylist.rb +3 -0
  287. data/lib/puppet/feature/eventlog.rb +5 -0
  288. data/lib/puppet/feature/external_facts.rb +5 -0
  289. data/lib/puppet/feature/libuser.rb +8 -0
  290. data/lib/puppet/feature/msgpack.rb +3 -0
  291. data/lib/puppet/feature/pe_license.rb +4 -0
  292. data/lib/puppet/feature/rack.rb +19 -0
  293. data/lib/puppet/feature/selinux.rb +3 -0
  294. data/lib/puppet/feature/ssh.rb +3 -0
  295. data/lib/puppet/feature/telnet.rb +9 -0
  296. data/lib/puppet/feature/zlib.rb +5 -0
  297. data/lib/puppet/file_bucket.rb +4 -0
  298. data/lib/puppet/file_bucket/dipper.rb +174 -0
  299. data/lib/puppet/file_bucket/file.rb +144 -0
  300. data/lib/puppet/file_serving.rb +3 -0
  301. data/lib/puppet/file_serving/base.rb +85 -0
  302. data/lib/puppet/file_serving/configuration.rb +109 -0
  303. data/lib/puppet/file_serving/configuration/parser.rb +121 -0
  304. data/lib/puppet/file_serving/content.rb +43 -0
  305. data/lib/puppet/file_serving/fileset.rb +172 -0
  306. data/lib/puppet/file_serving/http_metadata.rb +46 -0
  307. data/lib/puppet/file_serving/metadata.rb +163 -0
  308. data/lib/puppet/file_serving/mount.rb +39 -0
  309. data/lib/puppet/file_serving/mount/file.rb +121 -0
  310. data/lib/puppet/file_serving/mount/modules.rb +24 -0
  311. data/lib/puppet/file_serving/mount/pluginfacts.rb +35 -0
  312. data/lib/puppet/file_serving/mount/plugins.rb +35 -0
  313. data/lib/puppet/file_serving/terminus_helper.rb +31 -0
  314. data/lib/puppet/file_serving/terminus_selector.rb +32 -0
  315. data/lib/puppet/file_system.rb +376 -0
  316. data/lib/puppet/file_system/file_impl.rb +149 -0
  317. data/lib/puppet/file_system/memory_file.rb +66 -0
  318. data/lib/puppet/file_system/memory_impl.rb +82 -0
  319. data/lib/puppet/file_system/path_pattern.rb +97 -0
  320. data/lib/puppet/file_system/posix.rb +46 -0
  321. data/lib/puppet/file_system/uniquefile.rb +190 -0
  322. data/lib/puppet/file_system/windows.rb +117 -0
  323. data/lib/puppet/forge.rb +226 -0
  324. data/lib/puppet/forge/cache.rb +59 -0
  325. data/lib/puppet/forge/errors.rb +112 -0
  326. data/lib/puppet/forge/repository.rb +155 -0
  327. data/lib/puppet/functions.rb +663 -0
  328. data/lib/puppet/functions/assert_type.rb +95 -0
  329. data/lib/puppet/functions/defined.rb +161 -0
  330. data/lib/puppet/functions/each.rb +159 -0
  331. data/lib/puppet/functions/epp.rb +45 -0
  332. data/lib/puppet/functions/filter.rb +137 -0
  333. data/lib/puppet/functions/hiera.rb +81 -0
  334. data/lib/puppet/functions/hiera_array.rb +74 -0
  335. data/lib/puppet/functions/hiera_hash.rb +84 -0
  336. data/lib/puppet/functions/hiera_include.rb +90 -0
  337. data/lib/puppet/functions/import.rb +7 -0
  338. data/lib/puppet/functions/inline_epp.rb +59 -0
  339. data/lib/puppet/functions/lookup.rb +212 -0
  340. data/lib/puppet/functions/map.rb +122 -0
  341. data/lib/puppet/functions/match.rb +120 -0
  342. data/lib/puppet/functions/reduce.rb +121 -0
  343. data/lib/puppet/functions/regsubst.rb +79 -0
  344. data/lib/puppet/functions/reverse_each.rb +82 -0
  345. data/lib/puppet/functions/scanf.rb +44 -0
  346. data/lib/puppet/functions/slice.rb +111 -0
  347. data/lib/puppet/functions/split.rb +47 -0
  348. data/lib/puppet/functions/step.rb +88 -0
  349. data/lib/puppet/functions/type.rb +70 -0
  350. data/lib/puppet/functions/versioncmp.rb +36 -0
  351. data/lib/puppet/functions/with.rb +30 -0
  352. data/lib/puppet/graph.rb +11 -0
  353. data/lib/puppet/graph/key.rb +26 -0
  354. data/lib/puppet/graph/prioritizer.rb +29 -0
  355. data/lib/puppet/graph/random_prioritizer.rb +16 -0
  356. data/lib/puppet/graph/rb_tree_map.rb +388 -0
  357. data/lib/puppet/graph/relationship_graph.rb +274 -0
  358. data/lib/puppet/graph/sequential_prioritizer.rb +31 -0
  359. data/lib/puppet/graph/simple_graph.rb +562 -0
  360. data/lib/puppet/graph/title_hash_prioritizer.rb +16 -0
  361. data/lib/puppet/indirector.rb +61 -0
  362. data/lib/puppet/indirector/catalog/compiler.rb +364 -0
  363. data/lib/puppet/indirector/catalog/json.rb +6 -0
  364. data/lib/puppet/indirector/catalog/msgpack.rb +6 -0
  365. data/lib/puppet/indirector/catalog/rest.rb +6 -0
  366. data/lib/puppet/indirector/catalog/static_compiler.rb +229 -0
  367. data/lib/puppet/indirector/catalog/store_configs.rb +8 -0
  368. data/lib/puppet/indirector/catalog/yaml.rb +22 -0
  369. data/lib/puppet/indirector/certificate/ca.rb +9 -0
  370. data/lib/puppet/indirector/certificate/disabled_ca.rb +22 -0
  371. data/lib/puppet/indirector/certificate/file.rb +9 -0
  372. data/lib/puppet/indirector/certificate/rest.rb +16 -0
  373. data/lib/puppet/indirector/certificate_request/ca.rb +22 -0
  374. data/lib/puppet/indirector/certificate_request/disabled_ca.rb +22 -0
  375. data/lib/puppet/indirector/certificate_request/file.rb +8 -0
  376. data/lib/puppet/indirector/certificate_request/memory.rb +6 -0
  377. data/lib/puppet/indirector/certificate_request/rest.rb +10 -0
  378. data/lib/puppet/indirector/certificate_revocation_list/ca.rb +8 -0
  379. data/lib/puppet/indirector/certificate_revocation_list/disabled_ca.rb +22 -0
  380. data/lib/puppet/indirector/certificate_revocation_list/file.rb +8 -0
  381. data/lib/puppet/indirector/certificate_revocation_list/rest.rb +10 -0
  382. data/lib/puppet/indirector/certificate_status.rb +4 -0
  383. data/lib/puppet/indirector/certificate_status/file.rb +91 -0
  384. data/lib/puppet/indirector/certificate_status/rest.rb +11 -0
  385. data/lib/puppet/indirector/code.rb +6 -0
  386. data/lib/puppet/indirector/data_binding/hiera.rb +7 -0
  387. data/lib/puppet/indirector/data_binding/none.rb +8 -0
  388. data/lib/puppet/indirector/direct_file_server.rb +17 -0
  389. data/lib/puppet/indirector/envelope.rb +11 -0
  390. data/lib/puppet/indirector/errors.rb +5 -0
  391. data/lib/puppet/indirector/exec.rb +38 -0
  392. data/lib/puppet/indirector/face.rb +148 -0
  393. data/lib/puppet/indirector/facts/facter.rb +90 -0
  394. data/lib/puppet/indirector/facts/memory.rb +9 -0
  395. data/lib/puppet/indirector/facts/network_device.rb +27 -0
  396. data/lib/puppet/indirector/facts/store_configs.rb +11 -0
  397. data/lib/puppet/indirector/facts/yaml.rb +86 -0
  398. data/lib/puppet/indirector/file_bucket_file/file.rb +199 -0
  399. data/lib/puppet/indirector/file_bucket_file/rest.rb +8 -0
  400. data/lib/puppet/indirector/file_bucket_file/selector.rb +53 -0
  401. data/lib/puppet/indirector/file_content.rb +5 -0
  402. data/lib/puppet/indirector/file_content/file.rb +7 -0
  403. data/lib/puppet/indirector/file_content/file_server.rb +7 -0
  404. data/lib/puppet/indirector/file_content/http.rb +15 -0
  405. data/lib/puppet/indirector/file_content/rest.rb +9 -0
  406. data/lib/puppet/indirector/file_content/selector.rb +30 -0
  407. data/lib/puppet/indirector/file_metadata.rb +5 -0
  408. data/lib/puppet/indirector/file_metadata/file.rb +7 -0
  409. data/lib/puppet/indirector/file_metadata/file_server.rb +7 -0
  410. data/lib/puppet/indirector/file_metadata/http.rb +27 -0
  411. data/lib/puppet/indirector/file_metadata/rest.rb +9 -0
  412. data/lib/puppet/indirector/file_metadata/selector.rb +30 -0
  413. data/lib/puppet/indirector/file_server.rb +51 -0
  414. data/lib/puppet/indirector/generic_http.rb +16 -0
  415. data/lib/puppet/indirector/hiera.rb +92 -0
  416. data/lib/puppet/indirector/indirection.rb +338 -0
  417. data/lib/puppet/indirector/json.rb +76 -0
  418. data/lib/puppet/indirector/key/ca.rb +16 -0
  419. data/lib/puppet/indirector/key/disabled_ca.rb +22 -0
  420. data/lib/puppet/indirector/key/file.rb +49 -0
  421. data/lib/puppet/indirector/key/memory.rb +6 -0
  422. data/lib/puppet/indirector/ldap.rb +79 -0
  423. data/lib/puppet/indirector/memory.rb +34 -0
  424. data/lib/puppet/indirector/msgpack.rb +82 -0
  425. data/lib/puppet/indirector/node/exec.rb +69 -0
  426. data/lib/puppet/indirector/node/ldap.rb +257 -0
  427. data/lib/puppet/indirector/node/memory.rb +10 -0
  428. data/lib/puppet/indirector/node/msgpack.rb +7 -0
  429. data/lib/puppet/indirector/node/plain.rb +20 -0
  430. data/lib/puppet/indirector/node/rest.rb +7 -0
  431. data/lib/puppet/indirector/node/store_configs.rb +8 -0
  432. data/lib/puppet/indirector/node/write_only_yaml.rb +32 -0
  433. data/lib/puppet/indirector/node/yaml.rb +22 -0
  434. data/lib/puppet/indirector/none.rb +9 -0
  435. data/lib/puppet/indirector/plain.rb +9 -0
  436. data/lib/puppet/indirector/report/msgpack.rb +11 -0
  437. data/lib/puppet/indirector/report/processor.rb +59 -0
  438. data/lib/puppet/indirector/report/rest.rb +15 -0
  439. data/lib/puppet/indirector/report/yaml.rb +11 -0
  440. data/lib/puppet/indirector/request.rb +256 -0
  441. data/lib/puppet/indirector/resource/ral.rb +63 -0
  442. data/lib/puppet/indirector/resource/store_configs.rb +12 -0
  443. data/lib/puppet/indirector/resource/validator.rb +8 -0
  444. data/lib/puppet/indirector/resource_type.rb +5 -0
  445. data/lib/puppet/indirector/resource_type/parser.rb +103 -0
  446. data/lib/puppet/indirector/resource_type/rest.rb +7 -0
  447. data/lib/puppet/indirector/rest.rb +256 -0
  448. data/lib/puppet/indirector/ssl_file.rb +180 -0
  449. data/lib/puppet/indirector/status.rb +3 -0
  450. data/lib/puppet/indirector/status/local.rb +12 -0
  451. data/lib/puppet/indirector/status/rest.rb +9 -0
  452. data/lib/puppet/indirector/store_configs.rb +30 -0
  453. data/lib/puppet/indirector/terminus.rb +169 -0
  454. data/lib/puppet/indirector/yaml.rb +63 -0
  455. data/lib/puppet/info_service.rb +7 -0
  456. data/lib/puppet/info_service/class_information_service.rb +112 -0
  457. data/lib/puppet/interface.rb +228 -0
  458. data/lib/puppet/interface/action.rb +374 -0
  459. data/lib/puppet/interface/action_builder.rb +149 -0
  460. data/lib/puppet/interface/action_manager.rb +97 -0
  461. data/lib/puppet/interface/documentation.rb +342 -0
  462. data/lib/puppet/interface/face_collection.rb +125 -0
  463. data/lib/puppet/interface/option.rb +150 -0
  464. data/lib/puppet/interface/option_builder.rb +91 -0
  465. data/lib/puppet/interface/option_manager.rb +99 -0
  466. data/lib/puppet/loaders.rb +21 -0
  467. data/lib/puppet/metatype/manager.rb +178 -0
  468. data/lib/puppet/module.rb +355 -0
  469. data/lib/puppet/module_tool.rb +192 -0
  470. data/lib/puppet/module_tool/applications.rb +14 -0
  471. data/lib/puppet/module_tool/applications/application.rb +91 -0
  472. data/lib/puppet/module_tool/applications/builder.rb +148 -0
  473. data/lib/puppet/module_tool/applications/checksummer.rb +62 -0
  474. data/lib/puppet/module_tool/applications/installer.rb +351 -0
  475. data/lib/puppet/module_tool/applications/searcher.rb +29 -0
  476. data/lib/puppet/module_tool/applications/uninstaller.rb +117 -0
  477. data/lib/puppet/module_tool/applications/unpacker.rb +100 -0
  478. data/lib/puppet/module_tool/applications/upgrader.rb +277 -0
  479. data/lib/puppet/module_tool/checksums.rb +49 -0
  480. data/lib/puppet/module_tool/contents_description.rb +88 -0
  481. data/lib/puppet/module_tool/dependency.rb +42 -0
  482. data/lib/puppet/module_tool/errors.rb +11 -0
  483. data/lib/puppet/module_tool/errors/base.rb +15 -0
  484. data/lib/puppet/module_tool/errors/installer.rb +95 -0
  485. data/lib/puppet/module_tool/errors/shared.rb +188 -0
  486. data/lib/puppet/module_tool/errors/uninstaller.rb +45 -0
  487. data/lib/puppet/module_tool/errors/upgrader.rb +63 -0
  488. data/lib/puppet/module_tool/install_directory.rb +45 -0
  489. data/lib/puppet/module_tool/installed_modules.rb +96 -0
  490. data/lib/puppet/module_tool/local_tarball.rb +90 -0
  491. data/lib/puppet/module_tool/metadata.rb +221 -0
  492. data/lib/puppet/module_tool/shared_behaviors.rb +180 -0
  493. data/lib/puppet/module_tool/skeleton/templates/generator/Gemfile +14 -0
  494. data/lib/puppet/module_tool/skeleton/templates/generator/README.md.erb +83 -0
  495. data/lib/puppet/module_tool/skeleton/templates/generator/Rakefile +17 -0
  496. data/lib/puppet/module_tool/skeleton/templates/generator/manifests/init.pp.erb +48 -0
  497. data/lib/puppet/module_tool/skeleton/templates/generator/metadata.json.erb +1 -0
  498. data/lib/puppet/module_tool/skeleton/templates/generator/spec/classes/init_spec.rb.erb +7 -0
  499. data/lib/puppet/module_tool/skeleton/templates/generator/spec/spec_helper.rb +1 -0
  500. data/lib/puppet/module_tool/skeleton/templates/generator/tests/init.pp.erb +12 -0
  501. data/lib/puppet/module_tool/tar.rb +17 -0
  502. data/lib/puppet/module_tool/tar/gnu.rb +19 -0
  503. data/lib/puppet/module_tool/tar/mini.rb +53 -0
  504. data/lib/puppet/network.rb +3 -0
  505. data/lib/puppet/network/auth_config_parser.rb +84 -0
  506. data/lib/puppet/network/authconfig.rb +112 -0
  507. data/lib/puppet/network/authorization.rb +41 -0
  508. data/lib/puppet/network/authstore.rb +282 -0
  509. data/lib/puppet/network/client_request.rb +29 -0
  510. data/lib/puppet/network/format.rb +110 -0
  511. data/lib/puppet/network/format_handler.rb +105 -0
  512. data/lib/puppet/network/format_support.rb +128 -0
  513. data/lib/puppet/network/formats.rb +160 -0
  514. data/lib/puppet/network/http.rb +30 -0
  515. data/lib/puppet/network/http/api.rb +44 -0
  516. data/lib/puppet/network/http/api/ca.rb +2 -0
  517. data/lib/puppet/network/http/api/ca/v1.rb +11 -0
  518. data/lib/puppet/network/http/api/indirected_routes.rb +250 -0
  519. data/lib/puppet/network/http/api/indirection_type.rb +32 -0
  520. data/lib/puppet/network/http/api/master.rb +2 -0
  521. data/lib/puppet/network/http/api/master/v3.rb +28 -0
  522. data/lib/puppet/network/http/api/master/v3/authorization.rb +18 -0
  523. data/lib/puppet/network/http/api/master/v3/environment.rb +59 -0
  524. data/lib/puppet/network/http/api/master/v3/environments.rb +35 -0
  525. data/lib/puppet/network/http/compression.rb +116 -0
  526. data/lib/puppet/network/http/connection.rb +233 -0
  527. data/lib/puppet/network/http/error.rb +69 -0
  528. data/lib/puppet/network/http/factory.rb +47 -0
  529. data/lib/puppet/network/http/handler.rb +178 -0
  530. data/lib/puppet/network/http/issues.rb +11 -0
  531. data/lib/puppet/network/http/memory_response.rb +13 -0
  532. data/lib/puppet/network/http/nocache_pool.rb +21 -0
  533. data/lib/puppet/network/http/pool.rb +129 -0
  534. data/lib/puppet/network/http/rack.rb +33 -0
  535. data/lib/puppet/network/http/rack/rest.rb +138 -0
  536. data/lib/puppet/network/http/request.rb +56 -0
  537. data/lib/puppet/network/http/response.rb +11 -0
  538. data/lib/puppet/network/http/route.rb +100 -0
  539. data/lib/puppet/network/http/session.rb +17 -0
  540. data/lib/puppet/network/http/site.rb +39 -0
  541. data/lib/puppet/network/http/webrick.rb +124 -0
  542. data/lib/puppet/network/http/webrick/rest.rb +114 -0
  543. data/lib/puppet/network/http_pool.rb +61 -0
  544. data/lib/puppet/network/resolver.rb +86 -0
  545. data/lib/puppet/network/rest_controller.rb +2 -0
  546. data/lib/puppet/network/rights.rb +219 -0
  547. data/lib/puppet/network/server.rb +39 -0
  548. data/lib/puppet/node.rb +197 -0
  549. data/lib/puppet/node/environment.rb +540 -0
  550. data/lib/puppet/node/facts.rb +133 -0
  551. data/lib/puppet/parameter.rb +572 -0
  552. data/lib/puppet/parameter/boolean.rb +15 -0
  553. data/lib/puppet/parameter/package_options.rb +31 -0
  554. data/lib/puppet/parameter/path.rb +57 -0
  555. data/lib/puppet/parameter/value.rb +91 -0
  556. data/lib/puppet/parameter/value_collection.rb +212 -0
  557. data/lib/puppet/parser.rb +20 -0
  558. data/lib/puppet/parser/ast.rb +60 -0
  559. data/lib/puppet/parser/ast/block_expression.rb +15 -0
  560. data/lib/puppet/parser/ast/branch.rb +19 -0
  561. data/lib/puppet/parser/ast/hostclass.rb +27 -0
  562. data/lib/puppet/parser/ast/leaf.rb +75 -0
  563. data/lib/puppet/parser/ast/node.rb +17 -0
  564. data/lib/puppet/parser/ast/pops_bridge.rb +287 -0
  565. data/lib/puppet/parser/ast/resource.rb +61 -0
  566. data/lib/puppet/parser/ast/resource_instance.rb +6 -0
  567. data/lib/puppet/parser/ast/resourceparam.rb +26 -0
  568. data/lib/puppet/parser/ast/top_level_construct.rb +4 -0
  569. data/lib/puppet/parser/compiler.rb +895 -0
  570. data/lib/puppet/parser/compiler/catalog_validator.rb +33 -0
  571. data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +64 -0
  572. data/lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb +38 -0
  573. data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +20 -0
  574. data/lib/puppet/parser/e4_parser_adapter.rb +60 -0
  575. data/lib/puppet/parser/environment_compiler.rb +164 -0
  576. data/lib/puppet/parser/files.rb +92 -0
  577. data/lib/puppet/parser/functions.rb +272 -0
  578. data/lib/puppet/parser/functions/assert_type.rb +60 -0
  579. data/lib/puppet/parser/functions/contain.rb +38 -0
  580. data/lib/puppet/parser/functions/create_resources.rb +82 -0
  581. data/lib/puppet/parser/functions/defined.rb +131 -0
  582. data/lib/puppet/parser/functions/digest.rb +5 -0
  583. data/lib/puppet/parser/functions/each.rb +104 -0
  584. data/lib/puppet/parser/functions/epp.rb +36 -0
  585. data/lib/puppet/parser/functions/fail.rb +4 -0
  586. data/lib/puppet/parser/functions/file.rb +33 -0
  587. data/lib/puppet/parser/functions/filter.rb +78 -0
  588. data/lib/puppet/parser/functions/fqdn_rand.rb +21 -0
  589. data/lib/puppet/parser/functions/generate.rb +37 -0
  590. data/lib/puppet/parser/functions/hiera.rb +89 -0
  591. data/lib/puppet/parser/functions/hiera_array.rb +78 -0
  592. data/lib/puppet/parser/functions/hiera_hash.rb +88 -0
  593. data/lib/puppet/parser/functions/hiera_include.rb +88 -0
  594. data/lib/puppet/parser/functions/include.rb +37 -0
  595. data/lib/puppet/parser/functions/inline_epp.rb +51 -0
  596. data/lib/puppet/parser/functions/inline_template.rb +21 -0
  597. data/lib/puppet/parser/functions/lookup.rb +133 -0
  598. data/lib/puppet/parser/functions/map.rb +76 -0
  599. data/lib/puppet/parser/functions/match.rb +43 -0
  600. data/lib/puppet/parser/functions/md5.rb +5 -0
  601. data/lib/puppet/parser/functions/realize.rb +14 -0
  602. data/lib/puppet/parser/functions/reduce.rb +106 -0
  603. data/lib/puppet/parser/functions/regsubst.rb +60 -0
  604. data/lib/puppet/parser/functions/require.rb +63 -0
  605. data/lib/puppet/parser/functions/scanf.rb +33 -0
  606. data/lib/puppet/parser/functions/sha1.rb +5 -0
  607. data/lib/puppet/parser/functions/shellquote.rb +61 -0
  608. data/lib/puppet/parser/functions/slice.rb +39 -0
  609. data/lib/puppet/parser/functions/split.rb +28 -0
  610. data/lib/puppet/parser/functions/sprintf.rb +36 -0
  611. data/lib/puppet/parser/functions/tag.rb +6 -0
  612. data/lib/puppet/parser/functions/tagged.rb +18 -0
  613. data/lib/puppet/parser/functions/template.rb +30 -0
  614. data/lib/puppet/parser/functions/versioncmp.rb +30 -0
  615. data/lib/puppet/parser/functions/with.rb +28 -0
  616. data/lib/puppet/parser/parser_factory.rb +60 -0
  617. data/lib/puppet/parser/relationship.rb +54 -0
  618. data/lib/puppet/parser/resource.rb +358 -0
  619. data/lib/puppet/parser/resource/param.rb +25 -0
  620. data/lib/puppet/parser/scope.rb +1079 -0
  621. data/lib/puppet/parser/templatewrapper.rb +101 -0
  622. data/lib/puppet/parser/type_loader.rb +149 -0
  623. data/lib/puppet/parser/yaml_trimmer.rb +7 -0
  624. data/lib/puppet/plugins.rb +9 -0
  625. data/lib/puppet/plugins/binding_schemes.rb +140 -0
  626. data/lib/puppet/plugins/configuration.rb +69 -0
  627. data/lib/puppet/plugins/data_providers.rb +42 -0
  628. data/lib/puppet/plugins/data_providers/data_provider.rb +325 -0
  629. data/lib/puppet/plugins/data_providers/registry.rb +84 -0
  630. data/lib/puppet/plugins/syntax_checkers.rb +103 -0
  631. data/lib/puppet/pops.rb +130 -0
  632. data/lib/puppet/pops/adaptable.rb +204 -0
  633. data/lib/puppet/pops/adapters.rb +189 -0
  634. data/lib/puppet/pops/binder/binder.rb +398 -0
  635. data/lib/puppet/pops/binder/binder_issues.rb +124 -0
  636. data/lib/puppet/pops/binder/bindings_checker.rb +201 -0
  637. data/lib/puppet/pops/binder/bindings_composer.rb +181 -0
  638. data/lib/puppet/pops/binder/bindings_factory.rb +813 -0
  639. data/lib/puppet/pops/binder/bindings_label_provider.rb +45 -0
  640. data/lib/puppet/pops/binder/bindings_loader.rb +87 -0
  641. data/lib/puppet/pops/binder/bindings_model.rb +70 -0
  642. data/lib/puppet/pops/binder/bindings_model_dumper.rb +215 -0
  643. data/lib/puppet/pops/binder/bindings_model_meta.rb +215 -0
  644. data/lib/puppet/pops/binder/bindings_validator_factory.rb +28 -0
  645. data/lib/puppet/pops/binder/config/binder_config.rb +107 -0
  646. data/lib/puppet/pops/binder/config/binder_config_checker.rb +142 -0
  647. data/lib/puppet/pops/binder/config/diagnostic_producer.rb +36 -0
  648. data/lib/puppet/pops/binder/config/issues.rb +90 -0
  649. data/lib/puppet/pops/binder/injector.rb +771 -0
  650. data/lib/puppet/pops/binder/injector_entry.rb +57 -0
  651. data/lib/puppet/pops/binder/key_factory.rb +65 -0
  652. data/lib/puppet/pops/binder/producers.rb +831 -0
  653. data/lib/puppet/pops/binder/scheme_handler/confdir_scheme.rb +34 -0
  654. data/lib/puppet/pops/binder/scheme_handler/module_scheme.rb +143 -0
  655. data/lib/puppet/pops/binder/scheme_handler/symbolic_scheme.rb +53 -0
  656. data/lib/puppet/pops/binder/system_bindings.rb +60 -0
  657. data/lib/puppet/pops/containment.rb +104 -0
  658. data/lib/puppet/pops/evaluator/access_operator.rb +577 -0
  659. data/lib/puppet/pops/evaluator/callable_signature.rb +100 -0
  660. data/lib/puppet/pops/evaluator/closure.rb +265 -0
  661. data/lib/puppet/pops/evaluator/collector_transformer.rb +229 -0
  662. data/lib/puppet/pops/evaluator/collectors/abstract_collector.rb +86 -0
  663. data/lib/puppet/pops/evaluator/collectors/catalog_collector.rb +29 -0
  664. data/lib/puppet/pops/evaluator/collectors/exported_collector.rb +69 -0
  665. data/lib/puppet/pops/evaluator/collectors/fixed_set_collector.rb +37 -0
  666. data/lib/puppet/pops/evaluator/compare_operator.rb +199 -0
  667. data/lib/puppet/pops/evaluator/epp_evaluator.rb +94 -0
  668. data/lib/puppet/pops/evaluator/evaluator_impl.rb +1165 -0
  669. data/lib/puppet/pops/evaluator/external_syntax_support.rb +52 -0
  670. data/lib/puppet/pops/evaluator/json_strict_literal_evaluator.rb +85 -0
  671. data/lib/puppet/pops/evaluator/literal_evaluator.rb +87 -0
  672. data/lib/puppet/pops/evaluator/puppet_proc.rb +69 -0
  673. data/lib/puppet/pops/evaluator/relationship_operator.rb +169 -0
  674. data/lib/puppet/pops/evaluator/runtime3_converter.rb +180 -0
  675. data/lib/puppet/pops/evaluator/runtime3_support.rb +527 -0
  676. data/lib/puppet/pops/functions/dispatch.rb +85 -0
  677. data/lib/puppet/pops/functions/dispatcher.rb +76 -0
  678. data/lib/puppet/pops/functions/function.rb +113 -0
  679. data/lib/puppet/pops/issue_reporter.rb +115 -0
  680. data/lib/puppet/pops/issues.rb +713 -0
  681. data/lib/puppet/pops/label_provider.rb +76 -0
  682. data/lib/puppet/pops/loader/base_loader.rb +102 -0
  683. data/lib/puppet/pops/loader/dependency_loader.rb +60 -0
  684. data/lib/puppet/pops/loader/gem_support.rb +49 -0
  685. data/lib/puppet/pops/loader/loader.rb +192 -0
  686. data/lib/puppet/pops/loader/loader_paths.rb +194 -0
  687. data/lib/puppet/pops/loader/module_loaders.rb +273 -0
  688. data/lib/puppet/pops/loader/null_loader.rb +44 -0
  689. data/lib/puppet/pops/loader/puppet_function_instantiator.rb +83 -0
  690. data/lib/puppet/pops/loader/ruby_function_instantiator.rb +47 -0
  691. data/lib/puppet/pops/loader/simple_environment_loader.rb +20 -0
  692. data/lib/puppet/pops/loader/static_loader.rb +79 -0
  693. data/lib/puppet/pops/loader/type_definition_instantiator.rb +55 -0
  694. data/lib/puppet/pops/loader/uri_helper.rb +22 -0
  695. data/lib/puppet/pops/loaders.rb +282 -0
  696. data/lib/puppet/pops/lookup.rb +79 -0
  697. data/lib/puppet/pops/lookup/explainer.rb +472 -0
  698. data/lib/puppet/pops/lookup/invocation.rb +119 -0
  699. data/lib/puppet/pops/merge_strategy.rb +348 -0
  700. data/lib/puppet/pops/migration/migration_checker.rb +54 -0
  701. data/lib/puppet/pops/model/ast_transformer.rb +125 -0
  702. data/lib/puppet/pops/model/factory.rb +1116 -0
  703. data/lib/puppet/pops/model/model.rb +123 -0
  704. data/lib/puppet/pops/model/model_label_provider.rb +124 -0
  705. data/lib/puppet/pops/model/model_meta.rb +621 -0
  706. data/lib/puppet/pops/model/model_tree_dumper.rb +433 -0
  707. data/lib/puppet/pops/model/tree_dumper.rb +59 -0
  708. data/lib/puppet/pops/parser/code_merger.rb +29 -0
  709. data/lib/puppet/pops/parser/egrammar.ra +845 -0
  710. data/lib/puppet/pops/parser/eparser.rb +3082 -0
  711. data/lib/puppet/pops/parser/epp_parser.rb +51 -0
  712. data/lib/puppet/pops/parser/epp_support.rb +262 -0
  713. data/lib/puppet/pops/parser/evaluating_parser.rb +161 -0
  714. data/lib/puppet/pops/parser/heredoc_support.rb +144 -0
  715. data/lib/puppet/pops/parser/interpolation_support.rb +237 -0
  716. data/lib/puppet/pops/parser/lexer2.rb +768 -0
  717. data/lib/puppet/pops/parser/lexer_support.rb +220 -0
  718. data/lib/puppet/pops/parser/locatable.rb +23 -0
  719. data/lib/puppet/pops/parser/locator.rb +288 -0
  720. data/lib/puppet/pops/parser/parser_support.rb +254 -0
  721. data/lib/puppet/pops/parser/slurp_support.rb +119 -0
  722. data/lib/puppet/pops/patterns.rb +47 -0
  723. data/lib/puppet/pops/semantic_error.rb +17 -0
  724. data/lib/puppet/pops/types/class_loader.rb +133 -0
  725. data/lib/puppet/pops/types/enumeration.rb +16 -0
  726. data/lib/puppet/pops/types/iterable.rb +308 -0
  727. data/lib/puppet/pops/types/recursion_guard.rb +82 -0
  728. data/lib/puppet/pops/types/type_acceptor.rb +25 -0
  729. data/lib/puppet/pops/types/type_asserter.rb +47 -0
  730. data/lib/puppet/pops/types/type_assertion_error.rb +27 -0
  731. data/lib/puppet/pops/types/type_calculator.rb +783 -0
  732. data/lib/puppet/pops/types/type_factory.rb +458 -0
  733. data/lib/puppet/pops/types/type_formatter.rb +334 -0
  734. data/lib/puppet/pops/types/type_mismatch_describer.rb +910 -0
  735. data/lib/puppet/pops/types/type_parser.rb +517 -0
  736. data/lib/puppet/pops/types/types.rb +2358 -0
  737. data/lib/puppet/pops/types/types_meta.rb +0 -0
  738. data/lib/puppet/pops/utils.rb +143 -0
  739. data/lib/puppet/pops/validation.rb +462 -0
  740. data/lib/puppet/pops/validation/checker4_0.rb +894 -0
  741. data/lib/puppet/pops/validation/validator_factory_4_0.rb +36 -0
  742. data/lib/puppet/pops/visitable.rb +6 -0
  743. data/lib/puppet/pops/visitor.rb +92 -0
  744. data/lib/puppet/property.rb +537 -0
  745. data/lib/puppet/property/boolean.rb +7 -0
  746. data/lib/puppet/property/ensure.rb +105 -0
  747. data/lib/puppet/property/keyvalue.rb +95 -0
  748. data/lib/puppet/property/list.rb +78 -0
  749. data/lib/puppet/property/ordered_list.rb +29 -0
  750. data/lib/puppet/provider.rb +604 -0
  751. data/lib/puppet/provider/aixobject.rb +392 -0
  752. data/lib/puppet/provider/augeas/augeas.rb +567 -0
  753. data/lib/puppet/provider/cisco.rb +9 -0
  754. data/lib/puppet/provider/command.rb +25 -0
  755. data/lib/puppet/provider/computer/computer.rb +20 -0
  756. data/lib/puppet/provider/confine.rb +6 -0
  757. data/lib/puppet/provider/cron/crontab.rb +297 -0
  758. data/lib/puppet/provider/exec.rb +96 -0
  759. data/lib/puppet/provider/exec/posix.rb +48 -0
  760. data/lib/puppet/provider/exec/shell.rb +25 -0
  761. data/lib/puppet/provider/exec/windows.rb +55 -0
  762. data/lib/puppet/provider/file/posix.rb +136 -0
  763. data/lib/puppet/provider/file/windows.rb +104 -0
  764. data/lib/puppet/provider/group/aix.rb +141 -0
  765. data/lib/puppet/provider/group/directoryservice.rb +22 -0
  766. data/lib/puppet/provider/group/groupadd.rb +85 -0
  767. data/lib/puppet/provider/group/ldap.rb +45 -0
  768. data/lib/puppet/provider/group/pw.rb +49 -0
  769. data/lib/puppet/provider/group/windows_adsi.rb +106 -0
  770. data/lib/puppet/provider/host/parsed.rb +46 -0
  771. data/lib/puppet/provider/interface/cisco.rb +27 -0
  772. data/lib/puppet/provider/ldap.rb +137 -0
  773. data/lib/puppet/provider/macauthorization/macauthorization.rb +298 -0
  774. data/lib/puppet/provider/mailalias/aliases.rb +50 -0
  775. data/lib/puppet/provider/maillist/mailman.rb +108 -0
  776. data/lib/puppet/provider/mcx/mcxcontent.rb +172 -0
  777. data/lib/puppet/provider/mount.rb +58 -0
  778. data/lib/puppet/provider/mount/parsed.rb +280 -0
  779. data/lib/puppet/provider/naginator.rb +63 -0
  780. data/lib/puppet/provider/nameservice.rb +292 -0
  781. data/lib/puppet/provider/nameservice/directoryservice.rb +499 -0
  782. data/lib/puppet/provider/nameservice/objectadd.rb +33 -0
  783. data/lib/puppet/provider/nameservice/pw.rb +21 -0
  784. data/lib/puppet/provider/network_device.rb +71 -0
  785. data/lib/puppet/provider/package.rb +56 -0
  786. data/lib/puppet/provider/package/aix.rb +152 -0
  787. data/lib/puppet/provider/package/appdmg.rb +110 -0
  788. data/lib/puppet/provider/package/apple.rb +47 -0
  789. data/lib/puppet/provider/package/apt.rb +116 -0
  790. data/lib/puppet/provider/package/aptitude.rb +29 -0
  791. data/lib/puppet/provider/package/aptrpm.rb +83 -0
  792. data/lib/puppet/provider/package/blastwave.rb +111 -0
  793. data/lib/puppet/provider/package/dnf.rb +41 -0
  794. data/lib/puppet/provider/package/dpkg.rb +165 -0
  795. data/lib/puppet/provider/package/fink.rb +79 -0
  796. data/lib/puppet/provider/package/freebsd.rb +47 -0
  797. data/lib/puppet/provider/package/gem.rb +169 -0
  798. data/lib/puppet/provider/package/hpux.rb +44 -0
  799. data/lib/puppet/provider/package/macports.rb +107 -0
  800. data/lib/puppet/provider/package/nim.rb +280 -0
  801. data/lib/puppet/provider/package/openbsd.rb +242 -0
  802. data/lib/puppet/provider/package/opkg.rb +81 -0
  803. data/lib/puppet/provider/package/pacman.rb +267 -0
  804. data/lib/puppet/provider/package/pip.rb +134 -0
  805. data/lib/puppet/provider/package/pip3.rb +18 -0
  806. data/lib/puppet/provider/package/pkg.rb +245 -0
  807. data/lib/puppet/provider/package/pkgdmg.rb +152 -0
  808. data/lib/puppet/provider/package/pkgin.rb +87 -0
  809. data/lib/puppet/provider/package/pkgng.rb +143 -0
  810. data/lib/puppet/provider/package/pkgutil.rb +186 -0
  811. data/lib/puppet/provider/package/portage.rb +153 -0
  812. data/lib/puppet/provider/package/ports.rb +91 -0
  813. data/lib/puppet/provider/package/portupgrade.rb +239 -0
  814. data/lib/puppet/provider/package/puppet_gem.rb +17 -0
  815. data/lib/puppet/provider/package/rpm.rb +290 -0
  816. data/lib/puppet/provider/package/rug.rb +51 -0
  817. data/lib/puppet/provider/package/sun.rb +132 -0
  818. data/lib/puppet/provider/package/sunfreeware.rb +9 -0
  819. data/lib/puppet/provider/package/up2date.rb +40 -0
  820. data/lib/puppet/provider/package/urpmi.rb +55 -0
  821. data/lib/puppet/provider/package/windows.rb +113 -0
  822. data/lib/puppet/provider/package/windows/exe_package.rb +71 -0
  823. data/lib/puppet/provider/package/windows/msi_package.rb +62 -0
  824. data/lib/puppet/provider/package/windows/package.rb +100 -0
  825. data/lib/puppet/provider/package/yum.rb +302 -0
  826. data/lib/puppet/provider/package/zypper.rb +145 -0
  827. data/lib/puppet/provider/parsedfile.rb +459 -0
  828. data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +583 -0
  829. data/lib/puppet/provider/selboolean/getsetsebool.rb +47 -0
  830. data/lib/puppet/provider/selmodule/semodule.rb +134 -0
  831. data/lib/puppet/provider/service/base.rb +121 -0
  832. data/lib/puppet/provider/service/bsd.rb +51 -0
  833. data/lib/puppet/provider/service/daemontools.rb +194 -0
  834. data/lib/puppet/provider/service/debian.rb +74 -0
  835. data/lib/puppet/provider/service/freebsd.rb +143 -0
  836. data/lib/puppet/provider/service/gentoo.rb +45 -0
  837. data/lib/puppet/provider/service/init.rb +189 -0
  838. data/lib/puppet/provider/service/launchd.rb +331 -0
  839. data/lib/puppet/provider/service/openbsd.rb +100 -0
  840. data/lib/puppet/provider/service/openrc.rb +71 -0
  841. data/lib/puppet/provider/service/openwrt.rb +36 -0
  842. data/lib/puppet/provider/service/rcng.rb +51 -0
  843. data/lib/puppet/provider/service/redhat.rb +71 -0
  844. data/lib/puppet/provider/service/runit.rb +111 -0
  845. data/lib/puppet/provider/service/service.rb +42 -0
  846. data/lib/puppet/provider/service/smf.rb +157 -0
  847. data/lib/puppet/provider/service/src.rb +147 -0
  848. data/lib/puppet/provider/service/systemd.rb +163 -0
  849. data/lib/puppet/provider/service/upstart.rb +361 -0
  850. data/lib/puppet/provider/service/windows.rb +106 -0
  851. data/lib/puppet/provider/ssh_authorized_key/parsed.rb +105 -0
  852. data/lib/puppet/provider/sshkey/parsed.rb +50 -0
  853. data/lib/puppet/provider/user/aix.rb +369 -0
  854. data/lib/puppet/provider/user/directoryservice.rb +630 -0
  855. data/lib/puppet/provider/user/hpux.rb +95 -0
  856. data/lib/puppet/provider/user/ldap.rb +128 -0
  857. data/lib/puppet/provider/user/openbsd.rb +75 -0
  858. data/lib/puppet/provider/user/pw.rb +98 -0
  859. data/lib/puppet/provider/user/user_role_add.rb +210 -0
  860. data/lib/puppet/provider/user/useradd.rb +231 -0
  861. data/lib/puppet/provider/user/windows_adsi.rb +142 -0
  862. data/lib/puppet/provider/vlan/cisco.rb +28 -0
  863. data/lib/puppet/provider/yumrepo/inifile.rb +304 -0
  864. data/lib/puppet/provider/zfs/zfs.rb +84 -0
  865. data/lib/puppet/provider/zone/solaris.rb +361 -0
  866. data/lib/puppet/provider/zpool/zpool.rb +125 -0
  867. data/lib/puppet/reference/configuration.rb +80 -0
  868. data/lib/puppet/reference/function.rb +17 -0
  869. data/lib/puppet/reference/indirection.rb +71 -0
  870. data/lib/puppet/reference/metaparameter.rb +35 -0
  871. data/lib/puppet/reference/providers.rb +119 -0
  872. data/lib/puppet/reference/report.rb +20 -0
  873. data/lib/puppet/reference/type.rb +114 -0
  874. data/lib/puppet/relationship.rb +90 -0
  875. data/lib/puppet/reports.rb +93 -0
  876. data/lib/puppet/reports/http.rb +31 -0
  877. data/lib/puppet/reports/log.rb +14 -0
  878. data/lib/puppet/reports/store.rb +68 -0
  879. data/lib/puppet/resource.rb +606 -0
  880. data/lib/puppet/resource/capability_finder.rb +102 -0
  881. data/lib/puppet/resource/catalog.rb +648 -0
  882. data/lib/puppet/resource/status.rb +223 -0
  883. data/lib/puppet/resource/type.rb +562 -0
  884. data/lib/puppet/resource/type_collection.rb +241 -0
  885. data/lib/puppet/resource/type_collection_helper.rb +7 -0
  886. data/lib/puppet/scheduler.rb +16 -0
  887. data/lib/puppet/scheduler/job.rb +53 -0
  888. data/lib/puppet/scheduler/scheduler.rb +44 -0
  889. data/lib/puppet/scheduler/splay_job.rb +32 -0
  890. data/lib/puppet/scheduler/timer.rb +13 -0
  891. data/lib/puppet/settings.rb +1429 -0
  892. data/lib/puppet/settings/array_setting.rb +17 -0
  893. data/lib/puppet/settings/autosign_setting.rb +22 -0
  894. data/lib/puppet/settings/base_setting.rb +171 -0
  895. data/lib/puppet/settings/boolean_setting.rb +32 -0
  896. data/lib/puppet/settings/config_file.rb +142 -0
  897. data/lib/puppet/settings/directory_setting.rb +12 -0
  898. data/lib/puppet/settings/duration_setting.rb +32 -0
  899. data/lib/puppet/settings/enum_setting.rb +16 -0
  900. data/lib/puppet/settings/environment_conf.rb +192 -0
  901. data/lib/puppet/settings/errors.rb +11 -0
  902. data/lib/puppet/settings/file_or_directory_setting.rb +34 -0
  903. data/lib/puppet/settings/file_setting.rb +235 -0
  904. data/lib/puppet/settings/ini_file.rb +171 -0
  905. data/lib/puppet/settings/path_setting.rb +8 -0
  906. data/lib/puppet/settings/priority_setting.rb +42 -0
  907. data/lib/puppet/settings/string_setting.rb +9 -0
  908. data/lib/puppet/settings/terminus_setting.rb +14 -0
  909. data/lib/puppet/settings/ttl_setting.rb +46 -0
  910. data/lib/puppet/settings/value_translator.rb +15 -0
  911. data/lib/puppet/ssl.rb +13 -0
  912. data/lib/puppet/ssl/base.rb +140 -0
  913. data/lib/puppet/ssl/certificate.rb +95 -0
  914. data/lib/puppet/ssl/certificate_authority.rb +517 -0
  915. data/lib/puppet/ssl/certificate_authority/autosign_command.rb +45 -0
  916. data/lib/puppet/ssl/certificate_authority/interface.rb +184 -0
  917. data/lib/puppet/ssl/certificate_factory.rb +219 -0
  918. data/lib/puppet/ssl/certificate_request.rb +327 -0
  919. data/lib/puppet/ssl/certificate_request_attributes.rb +37 -0
  920. data/lib/puppet/ssl/certificate_revocation_list.rb +110 -0
  921. data/lib/puppet/ssl/certificate_signer.rb +22 -0
  922. data/lib/puppet/ssl/configuration.rb +58 -0
  923. data/lib/puppet/ssl/digest.rb +20 -0
  924. data/lib/puppet/ssl/host.rb +365 -0
  925. data/lib/puppet/ssl/inventory.rb +48 -0
  926. data/lib/puppet/ssl/key.rb +59 -0
  927. data/lib/puppet/ssl/oids.rb +155 -0
  928. data/lib/puppet/ssl/validator.rb +60 -0
  929. data/lib/puppet/ssl/validator/default_validator.rb +174 -0
  930. data/lib/puppet/ssl/validator/no_validator.rb +20 -0
  931. data/lib/puppet/status.rb +40 -0
  932. data/lib/puppet/syntax_checkers.rb +3 -0
  933. data/lib/puppet/syntax_checkers/json.rb +37 -0
  934. data/lib/puppet/test/test_helper.rb +254 -0
  935. data/lib/puppet/transaction.rb +405 -0
  936. data/lib/puppet/transaction/additional_resource_generator.rb +207 -0
  937. data/lib/puppet/transaction/event.rb +106 -0
  938. data/lib/puppet/transaction/event_manager.rb +167 -0
  939. data/lib/puppet/transaction/report.rb +408 -0
  940. data/lib/puppet/transaction/resource_harness.rb +236 -0
  941. data/lib/puppet/type.rb +2607 -0
  942. data/lib/puppet/type/augeas.rb +211 -0
  943. data/lib/puppet/type/component.rb +77 -0
  944. data/lib/puppet/type/computer.rb +66 -0
  945. data/lib/puppet/type/cron.rb +492 -0
  946. data/lib/puppet/type/exec.rb +601 -0
  947. data/lib/puppet/type/file.rb +985 -0
  948. data/lib/puppet/type/file/checksum.rb +43 -0
  949. data/lib/puppet/type/file/checksum_value.rb +53 -0
  950. data/lib/puppet/type/file/content.rb +160 -0
  951. data/lib/puppet/type/file/ctime.rb +20 -0
  952. data/lib/puppet/type/file/data_sync.rb +84 -0
  953. data/lib/puppet/type/file/ensure.rb +192 -0
  954. data/lib/puppet/type/file/group.rb +41 -0
  955. data/lib/puppet/type/file/mode.rb +173 -0
  956. data/lib/puppet/type/file/mtime.rb +18 -0
  957. data/lib/puppet/type/file/owner.rb +44 -0
  958. data/lib/puppet/type/file/selcontext.rb +124 -0
  959. data/lib/puppet/type/file/source.rb +346 -0
  960. data/lib/puppet/type/file/target.rb +87 -0
  961. data/lib/puppet/type/file/type.rb +19 -0
  962. data/lib/puppet/type/filebucket.rb +122 -0
  963. data/lib/puppet/type/group.rb +200 -0
  964. data/lib/puppet/type/host.rb +95 -0
  965. data/lib/puppet/type/interface.rb +121 -0
  966. data/lib/puppet/type/k5login.rb +88 -0
  967. data/lib/puppet/type/macauthorization.rb +167 -0
  968. data/lib/puppet/type/mailalias.rb +62 -0
  969. data/lib/puppet/type/maillist.rb +62 -0
  970. data/lib/puppet/type/mcx.rb +98 -0
  971. data/lib/puppet/type/mount.rb +297 -0
  972. data/lib/puppet/type/nagios_command.rb +3 -0
  973. data/lib/puppet/type/nagios_contact.rb +3 -0
  974. data/lib/puppet/type/nagios_contactgroup.rb +3 -0
  975. data/lib/puppet/type/nagios_host.rb +3 -0
  976. data/lib/puppet/type/nagios_hostdependency.rb +3 -0
  977. data/lib/puppet/type/nagios_hostescalation.rb +3 -0
  978. data/lib/puppet/type/nagios_hostextinfo.rb +3 -0
  979. data/lib/puppet/type/nagios_hostgroup.rb +3 -0
  980. data/lib/puppet/type/nagios_service.rb +3 -0
  981. data/lib/puppet/type/nagios_servicedependency.rb +3 -0
  982. data/lib/puppet/type/nagios_serviceescalation.rb +3 -0
  983. data/lib/puppet/type/nagios_serviceextinfo.rb +3 -0
  984. data/lib/puppet/type/nagios_servicegroup.rb +3 -0
  985. data/lib/puppet/type/nagios_timeperiod.rb +3 -0
  986. data/lib/puppet/type/notify.rb +44 -0
  987. data/lib/puppet/type/package.rb +571 -0
  988. data/lib/puppet/type/resources.rb +180 -0
  989. data/lib/puppet/type/router.rb +17 -0
  990. data/lib/puppet/type/schedule.rb +469 -0
  991. data/lib/puppet/type/scheduled_task.rb +184 -0
  992. data/lib/puppet/type/selboolean.rb +26 -0
  993. data/lib/puppet/type/selmodule.rb +59 -0
  994. data/lib/puppet/type/service.rb +243 -0
  995. data/lib/puppet/type/ssh_authorized_key.rb +153 -0
  996. data/lib/puppet/type/sshkey.rb +73 -0
  997. data/lib/puppet/type/stage.rb +27 -0
  998. data/lib/puppet/type/tidy.rb +329 -0
  999. data/lib/puppet/type/user.rb +747 -0
  1000. data/lib/puppet/type/vlan.rb +26 -0
  1001. data/lib/puppet/type/whit.rb +34 -0
  1002. data/lib/puppet/type/yumrepo.rb +409 -0
  1003. data/lib/puppet/type/zfs.rb +150 -0
  1004. data/lib/puppet/type/zone.rb +382 -0
  1005. data/lib/puppet/type/zpool.rb +91 -0
  1006. data/lib/puppet/util.rb +579 -0
  1007. data/lib/puppet/util/autoload.rb +226 -0
  1008. data/lib/puppet/util/backups.rb +86 -0
  1009. data/lib/puppet/util/checksums.rb +282 -0
  1010. data/lib/puppet/util/classgen.rb +228 -0
  1011. data/lib/puppet/util/colors.rb +100 -0
  1012. data/lib/puppet/util/command_line.rb +181 -0
  1013. data/lib/puppet/util/command_line/puppet_option_parser.rb +87 -0
  1014. data/lib/puppet/util/command_line/trollop.rb +824 -0
  1015. data/lib/puppet/util/constant_inflector.rb +24 -0
  1016. data/lib/puppet/util/diff.rb +79 -0
  1017. data/lib/puppet/util/docs.rb +128 -0
  1018. data/lib/puppet/util/errors.rb +108 -0
  1019. data/lib/puppet/util/execution.rb +356 -0
  1020. data/lib/puppet/util/execution_stub.rb +26 -0
  1021. data/lib/puppet/util/feature.rb +95 -0
  1022. data/lib/puppet/util/file_watcher.rb +28 -0
  1023. data/lib/puppet/util/fileparsing.rb +377 -0
  1024. data/lib/puppet/util/filetype.rb +303 -0
  1025. data/lib/puppet/util/http_proxy.rb +197 -0
  1026. data/lib/puppet/util/inifile.rb +341 -0
  1027. data/lib/puppet/util/instance_loader.rb +81 -0
  1028. data/lib/puppet/util/json_lockfile.rb +44 -0
  1029. data/lib/puppet/util/ldap.rb +2 -0
  1030. data/lib/puppet/util/ldap/connection.rb +71 -0
  1031. data/lib/puppet/util/ldap/generator.rb +42 -0
  1032. data/lib/puppet/util/ldap/manager.rb +278 -0
  1033. data/lib/puppet/util/libuser.conf +15 -0
  1034. data/lib/puppet/util/libuser.rb +12 -0
  1035. data/lib/puppet/util/limits.rb +12 -0
  1036. data/lib/puppet/util/lockfile.rb +66 -0
  1037. data/lib/puppet/util/log.rb +386 -0
  1038. data/lib/puppet/util/log/destination.rb +49 -0
  1039. data/lib/puppet/util/log/destinations.rb +255 -0
  1040. data/lib/puppet/util/logging.rb +310 -0
  1041. data/lib/puppet/util/metaid.rb +21 -0
  1042. data/lib/puppet/util/methodhelper.rb +32 -0
  1043. data/lib/puppet/util/metric.rb +61 -0
  1044. data/lib/puppet/util/monkey_patches.rb +132 -0
  1045. data/lib/puppet/util/multi_match.rb +51 -0
  1046. data/lib/puppet/util/nagios_maker.rb +85 -0
  1047. data/lib/puppet/util/network_device.rb +17 -0
  1048. data/lib/puppet/util/network_device/base.rb +23 -0
  1049. data/lib/puppet/util/network_device/cisco.rb +4 -0
  1050. data/lib/puppet/util/network_device/cisco/device.rb +275 -0
  1051. data/lib/puppet/util/network_device/cisco/facts.rb +72 -0
  1052. data/lib/puppet/util/network_device/cisco/interface.rb +95 -0
  1053. data/lib/puppet/util/network_device/config.rb +98 -0
  1054. data/lib/puppet/util/network_device/ipcalc.rb +68 -0
  1055. data/lib/puppet/util/network_device/transport.rb +5 -0
  1056. data/lib/puppet/util/network_device/transport/base.rb +26 -0
  1057. data/lib/puppet/util/network_device/transport/ssh.rb +126 -0
  1058. data/lib/puppet/util/network_device/transport/telnet.rb +47 -0
  1059. data/lib/puppet/util/package.rb +31 -0
  1060. data/lib/puppet/util/pidlock.rb +62 -0
  1061. data/lib/puppet/util/platform.rb +22 -0
  1062. data/lib/puppet/util/plist.rb +130 -0
  1063. data/lib/puppet/util/posix.rb +137 -0
  1064. data/lib/puppet/util/profiler.rb +53 -0
  1065. data/lib/puppet/util/profiler/aggregate.rb +85 -0
  1066. data/lib/puppet/util/profiler/around_profiler.rb +67 -0
  1067. data/lib/puppet/util/profiler/logging.rb +48 -0
  1068. data/lib/puppet/util/profiler/object_counts.rb +17 -0
  1069. data/lib/puppet/util/profiler/wall_clock.rb +35 -0
  1070. data/lib/puppet/util/provider_features.rb +184 -0
  1071. data/lib/puppet/util/psych_support.rb +38 -0
  1072. data/lib/puppet/util/rdoc.rb +60 -0
  1073. data/lib/puppet/util/rdoc/code_objects.rb +294 -0
  1074. data/lib/puppet/util/rdoc/generators/puppet_generator.rb +910 -0
  1075. data/lib/puppet/util/rdoc/generators/template/puppet/puppet.rb +1085 -0
  1076. data/lib/puppet/util/rdoc/parser.rb +12 -0
  1077. data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +258 -0
  1078. data/lib/puppet/util/rdoc/parser/puppet_parser_rdoc2.rb +14 -0
  1079. data/lib/puppet/util/reference.rb +124 -0
  1080. data/lib/puppet/util/resource_template.rb +61 -0
  1081. data/lib/puppet/util/retry_action.rb +46 -0
  1082. data/lib/puppet/util/rubygems.rb +75 -0
  1083. data/lib/puppet/util/run_mode.rb +110 -0
  1084. data/lib/puppet/util/selinux.rb +222 -0
  1085. data/lib/puppet/util/skip_tags.rb +9 -0
  1086. data/lib/puppet/util/splayer.rb +18 -0
  1087. data/lib/puppet/util/ssl.rb +53 -0
  1088. data/lib/puppet/util/storage.rb +89 -0
  1089. data/lib/puppet/util/suidmanager.rb +164 -0
  1090. data/lib/puppet/util/symbolic_file_mode.rb +144 -0
  1091. data/lib/puppet/util/tag_set.rb +30 -0
  1092. data/lib/puppet/util/tagging.rb +118 -0
  1093. data/lib/puppet/util/terminal.rb +16 -0
  1094. data/lib/puppet/util/user_attr.rb +21 -0
  1095. data/lib/puppet/util/warnings.rb +33 -0
  1096. data/lib/puppet/util/watched_file.rb +37 -0
  1097. data/lib/puppet/util/watcher.rb +17 -0
  1098. data/lib/puppet/util/watcher/change_watcher.rb +33 -0
  1099. data/lib/puppet/util/watcher/periodic_watcher.rb +37 -0
  1100. data/lib/puppet/util/watcher/timer.rb +19 -0
  1101. data/lib/puppet/util/windows.rb +32 -0
  1102. data/lib/puppet/util/windows/access_control_entry.rb +84 -0
  1103. data/lib/puppet/util/windows/access_control_list.rb +113 -0
  1104. data/lib/puppet/util/windows/adsi.rb +523 -0
  1105. data/lib/puppet/util/windows/api_types.rb +275 -0
  1106. data/lib/puppet/util/windows/com.rb +224 -0
  1107. data/lib/puppet/util/windows/error.rb +83 -0
  1108. data/lib/puppet/util/windows/file.rb +395 -0
  1109. data/lib/puppet/util/windows/principal.rb +190 -0
  1110. data/lib/puppet/util/windows/process.rb +479 -0
  1111. data/lib/puppet/util/windows/registry.rb +374 -0
  1112. data/lib/puppet/util/windows/root_certs.rb +108 -0
  1113. data/lib/puppet/util/windows/security.rb +857 -0
  1114. data/lib/puppet/util/windows/security_descriptor.rb +62 -0
  1115. data/lib/puppet/util/windows/sid.rb +231 -0
  1116. data/lib/puppet/util/windows/string.rb +16 -0
  1117. data/lib/puppet/util/windows/taskscheduler.rb +1220 -0
  1118. data/lib/puppet/util/windows/user.rb +291 -0
  1119. data/lib/puppet/util/yaml.rb +24 -0
  1120. data/lib/puppet/vendor.rb +57 -0
  1121. data/lib/puppet/vendor/deep_merge/CHANGELOG +45 -0
  1122. data/lib/puppet/vendor/deep_merge/Gemfile +3 -0
  1123. data/lib/puppet/vendor/deep_merge/LICENSE +21 -0
  1124. data/lib/puppet/vendor/deep_merge/PUPPET_README.md +6 -0
  1125. data/lib/puppet/vendor/deep_merge/README.md +113 -0
  1126. data/lib/puppet/vendor/deep_merge/Rakefile +19 -0
  1127. data/lib/puppet/vendor/deep_merge/deep_merge.gemspec +35 -0
  1128. data/lib/puppet/vendor/deep_merge/lib/deep_merge.rb +2 -0
  1129. data/lib/puppet/vendor/deep_merge/lib/deep_merge/core.rb +210 -0
  1130. data/lib/puppet/vendor/deep_merge/lib/deep_merge/deep_merge_hash.rb +28 -0
  1131. data/lib/puppet/vendor/deep_merge/lib/deep_merge/rails_compat.rb +27 -0
  1132. data/lib/puppet/vendor/deep_merge/test/test_deep_merge.rb +608 -0
  1133. data/lib/puppet/vendor/load_deep_merge.rb +1 -0
  1134. data/lib/puppet/vendor/load_pathspec.rb +1 -0
  1135. data/lib/puppet/vendor/load_rgen.rb +2 -0
  1136. data/lib/puppet/vendor/load_semantic.rb +1 -0
  1137. data/lib/puppet/vendor/pathspec/CHANGELOG.md +2 -0
  1138. data/lib/puppet/vendor/pathspec/LICENSE +201 -0
  1139. data/lib/puppet/vendor/pathspec/PUPPET_README.md +6 -0
  1140. data/lib/puppet/vendor/pathspec/README.md +53 -0
  1141. data/lib/puppet/vendor/pathspec/lib/pathspec.rb +121 -0
  1142. data/lib/puppet/vendor/pathspec/lib/pathspec/gitignorespec.rb +275 -0
  1143. data/lib/puppet/vendor/pathspec/lib/pathspec/regexspec.rb +17 -0
  1144. data/lib/puppet/vendor/pathspec/lib/pathspec/spec.rb +14 -0
  1145. data/lib/puppet/vendor/require_vendored.rb +7 -0
  1146. data/lib/puppet/vendor/rgen/CHANGELOG +197 -0
  1147. data/lib/puppet/vendor/rgen/MIT-LICENSE +20 -0
  1148. data/lib/puppet/vendor/rgen/PUPPET_README.md +6 -0
  1149. data/lib/puppet/vendor/rgen/README.rdoc +78 -0
  1150. data/lib/puppet/vendor/rgen/Rakefile +41 -0
  1151. data/lib/puppet/vendor/rgen/TODO +41 -0
  1152. data/lib/puppet/vendor/rgen/anounce.txt +61 -0
  1153. data/lib/puppet/vendor/rgen/design_rationale.txt +71 -0
  1154. data/lib/puppet/vendor/rgen/lib/ea_support/ea_support.rb +54 -0
  1155. data/lib/puppet/vendor/rgen/lib/ea_support/id_store.rb +32 -0
  1156. data/lib/puppet/vendor/rgen/lib/ea_support/uml13_ea_metamodel.rb +562 -0
  1157. data/lib/puppet/vendor/rgen/lib/ea_support/uml13_ea_metamodel_ext.rb +45 -0
  1158. data/lib/puppet/vendor/rgen/lib/ea_support/uml13_ea_metamodel_generator.rb +43 -0
  1159. data/lib/puppet/vendor/rgen/lib/ea_support/uml13_ea_to_uml13.rb +103 -0
  1160. data/lib/puppet/vendor/rgen/lib/ea_support/uml13_to_uml13_ea.rb +89 -0
  1161. data/lib/puppet/vendor/rgen/lib/metamodels/uml13_metamodel.rb +559 -0
  1162. data/lib/puppet/vendor/rgen/lib/metamodels/uml13_metamodel_ext.rb +26 -0
  1163. data/lib/puppet/vendor/rgen/lib/mmgen/metamodel_generator.rb +20 -0
  1164. data/lib/puppet/vendor/rgen/lib/mmgen/mm_ext/ecore_mmgen_ext.rb +91 -0
  1165. data/lib/puppet/vendor/rgen/lib/mmgen/mmgen.rb +28 -0
  1166. data/lib/puppet/vendor/rgen/lib/mmgen/templates/annotations.tpl +37 -0
  1167. data/lib/puppet/vendor/rgen/lib/mmgen/templates/metamodel_generator.tpl +172 -0
  1168. data/lib/puppet/vendor/rgen/lib/rgen/array_extensions.rb +45 -0
  1169. data/lib/puppet/vendor/rgen/lib/rgen/ecore/ecore.rb +218 -0
  1170. data/lib/puppet/vendor/rgen/lib/rgen/ecore/ecore_builder_methods.rb +81 -0
  1171. data/lib/puppet/vendor/rgen/lib/rgen/ecore/ecore_ext.rb +69 -0
  1172. data/lib/puppet/vendor/rgen/lib/rgen/ecore/ecore_interface.rb +47 -0
  1173. data/lib/puppet/vendor/rgen/lib/rgen/ecore/ecore_to_ruby.rb +167 -0
  1174. data/lib/puppet/vendor/rgen/lib/rgen/ecore/ruby_to_ecore.rb +91 -0
  1175. data/lib/puppet/vendor/rgen/lib/rgen/environment.rb +129 -0
  1176. data/lib/puppet/vendor/rgen/lib/rgen/fragment/dump_file_cache.rb +63 -0
  1177. data/lib/puppet/vendor/rgen/lib/rgen/fragment/fragmented_model.rb +140 -0
  1178. data/lib/puppet/vendor/rgen/lib/rgen/fragment/model_fragment.rb +289 -0
  1179. data/lib/puppet/vendor/rgen/lib/rgen/instantiator/abstract_instantiator.rb +66 -0
  1180. data/lib/puppet/vendor/rgen/lib/rgen/instantiator/abstract_xml_instantiator.rb +66 -0
  1181. data/lib/puppet/vendor/rgen/lib/rgen/instantiator/default_xml_instantiator.rb +117 -0
  1182. data/lib/puppet/vendor/rgen/lib/rgen/instantiator/ecore_xml_instantiator.rb +169 -0
  1183. data/lib/puppet/vendor/rgen/lib/rgen/instantiator/json_instantiator.rb +126 -0
  1184. data/lib/puppet/vendor/rgen/lib/rgen/instantiator/json_parser.rb +331 -0
  1185. data/lib/puppet/vendor/rgen/lib/rgen/instantiator/json_parser.y +94 -0
  1186. data/lib/puppet/vendor/rgen/lib/rgen/instantiator/nodebased_xml_instantiator.rb +137 -0
  1187. data/lib/puppet/vendor/rgen/lib/rgen/instantiator/qualified_name_resolver.rb +97 -0
  1188. data/lib/puppet/vendor/rgen/lib/rgen/instantiator/reference_resolver.rb +128 -0
  1189. data/lib/puppet/vendor/rgen/lib/rgen/instantiator/resolution_helper.rb +47 -0
  1190. data/lib/puppet/vendor/rgen/lib/rgen/instantiator/xmi11_instantiator.rb +168 -0
  1191. data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder.rb +224 -0
  1192. data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/builder_extensions.rb +556 -0
  1193. data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/builder_runtime.rb +174 -0
  1194. data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/constant_order_helper.rb +89 -0
  1195. data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/data_types.rb +77 -0
  1196. data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/intermediate/annotation.rb +30 -0
  1197. data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/intermediate/feature.rb +168 -0
  1198. data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/mm_multiple.rb +23 -0
  1199. data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/module_extension.rb +42 -0
  1200. data/lib/puppet/vendor/rgen/lib/rgen/model_builder.rb +32 -0
  1201. data/lib/puppet/vendor/rgen/lib/rgen/model_builder/builder_context.rb +334 -0
  1202. data/lib/puppet/vendor/rgen/lib/rgen/model_builder/model_serializer.rb +225 -0
  1203. data/lib/puppet/vendor/rgen/lib/rgen/model_builder/reference_resolver.rb +156 -0
  1204. data/lib/puppet/vendor/rgen/lib/rgen/serializer/json_serializer.rb +121 -0
  1205. data/lib/puppet/vendor/rgen/lib/rgen/serializer/opposite_reference_filter.rb +18 -0
  1206. data/lib/puppet/vendor/rgen/lib/rgen/serializer/qualified_name_provider.rb +47 -0
  1207. data/lib/puppet/vendor/rgen/lib/rgen/serializer/xmi11_serializer.rb +116 -0
  1208. data/lib/puppet/vendor/rgen/lib/rgen/serializer/xmi20_serializer.rb +71 -0
  1209. data/lib/puppet/vendor/rgen/lib/rgen/serializer/xml_serializer.rb +98 -0
  1210. data/lib/puppet/vendor/rgen/lib/rgen/template_language.rb +297 -0
  1211. data/lib/puppet/vendor/rgen/lib/rgen/template_language/directory_template_container.rb +83 -0
  1212. data/lib/puppet/vendor/rgen/lib/rgen/template_language/output_handler.rb +87 -0
  1213. data/lib/puppet/vendor/rgen/lib/rgen/template_language/template_container.rb +234 -0
  1214. data/lib/puppet/vendor/rgen/lib/rgen/template_language/template_helper.rb +26 -0
  1215. data/lib/puppet/vendor/rgen/lib/rgen/transformer.rb +475 -0
  1216. data/lib/puppet/vendor/rgen/lib/rgen/util/auto_class_creator.rb +61 -0
  1217. data/lib/puppet/vendor/rgen/lib/rgen/util/cached_glob.rb +67 -0
  1218. data/lib/puppet/vendor/rgen/lib/rgen/util/file_cache_map.rb +124 -0
  1219. data/lib/puppet/vendor/rgen/lib/rgen/util/file_change_detector.rb +84 -0
  1220. data/lib/puppet/vendor/rgen/lib/rgen/util/method_delegation.rb +114 -0
  1221. data/lib/puppet/vendor/rgen/lib/rgen/util/model_comparator.rb +68 -0
  1222. data/lib/puppet/vendor/rgen/lib/rgen/util/model_comparator_base.rb +142 -0
  1223. data/lib/puppet/vendor/rgen/lib/rgen/util/model_dumper.rb +29 -0
  1224. data/lib/puppet/vendor/rgen/lib/rgen/util/name_helper.rb +42 -0
  1225. data/lib/puppet/vendor/rgen/lib/rgen/util/pattern_matcher.rb +329 -0
  1226. data/lib/puppet/vendor/rgen/lib/transformers/ecore_to_uml13.rb +79 -0
  1227. data/lib/puppet/vendor/rgen/lib/transformers/uml13_to_ecore.rb +127 -0
  1228. data/lib/puppet/vendor/rgen/test/array_extensions_test.rb +64 -0
  1229. data/lib/puppet/vendor/rgen/test/ea_instantiator_test.rb +35 -0
  1230. data/lib/puppet/vendor/rgen/test/ea_serializer_test.rb +23 -0
  1231. data/lib/puppet/vendor/rgen/test/ecore_self_test.rb +54 -0
  1232. data/lib/puppet/vendor/rgen/test/environment_test.rb +90 -0
  1233. data/lib/puppet/vendor/rgen/test/json_test.rb +171 -0
  1234. data/lib/puppet/vendor/rgen/test/metamodel_builder_test.rb +1482 -0
  1235. data/lib/puppet/vendor/rgen/test/metamodel_from_ecore_test.rb +57 -0
  1236. data/lib/puppet/vendor/rgen/test/metamodel_order_test.rb +131 -0
  1237. data/lib/puppet/vendor/rgen/test/metamodel_roundtrip_test.rb +98 -0
  1238. data/lib/puppet/vendor/rgen/test/metamodel_roundtrip_test/TestModel.rb +70 -0
  1239. data/lib/puppet/vendor/rgen/test/metamodel_roundtrip_test/houseMetamodel.ecore +42 -0
  1240. data/lib/puppet/vendor/rgen/test/metamodel_roundtrip_test/houseMetamodel_from_ecore.rb +44 -0
  1241. data/lib/puppet/vendor/rgen/test/metamodel_roundtrip_test/using_builtin_types.ecore +9 -0
  1242. data/lib/puppet/vendor/rgen/test/method_delegation_test.rb +178 -0
  1243. data/lib/puppet/vendor/rgen/test/model_builder/builder_context_test.rb +59 -0
  1244. data/lib/puppet/vendor/rgen/test/model_builder/builder_test.rb +242 -0
  1245. data/lib/puppet/vendor/rgen/test/model_builder/ecore_original.rb +163 -0
  1246. data/lib/puppet/vendor/rgen/test/model_builder/ecore_original_regenerated.rb +163 -0
  1247. data/lib/puppet/vendor/rgen/test/model_builder/reference_resolver_test.rb +156 -0
  1248. data/lib/puppet/vendor/rgen/test/model_builder/serializer_test.rb +94 -0
  1249. data/lib/puppet/vendor/rgen/test/model_builder/statemachine_metamodel.rb +42 -0
  1250. data/lib/puppet/vendor/rgen/test/model_builder/test_model/statemachine1.rb +23 -0
  1251. data/lib/puppet/vendor/rgen/test/model_builder_test.rb +6 -0
  1252. data/lib/puppet/vendor/rgen/test/model_fragment_test.rb +30 -0
  1253. data/lib/puppet/vendor/rgen/test/output_handler_test.rb +58 -0
  1254. data/lib/puppet/vendor/rgen/test/qualified_name_provider_test.rb +48 -0
  1255. data/lib/puppet/vendor/rgen/test/qualified_name_resolver_test.rb +102 -0
  1256. data/lib/puppet/vendor/rgen/test/reference_resolver_test.rb +117 -0
  1257. data/lib/puppet/vendor/rgen/test/rgen_test.rb +26 -0
  1258. data/lib/puppet/vendor/rgen/test/template_language_test.rb +163 -0
  1259. data/lib/puppet/vendor/rgen/test/template_language_test/expected_result1.txt +29 -0
  1260. data/lib/puppet/vendor/rgen/test/template_language_test/expected_result2.txt +9 -0
  1261. data/lib/puppet/vendor/rgen/test/template_language_test/expected_result3.txt +4 -0
  1262. data/lib/puppet/vendor/rgen/test/template_language_test/indentStringTestDefaultIndent.out +1 -0
  1263. data/lib/puppet/vendor/rgen/test/template_language_test/indentStringTestTabIndent.out +1 -0
  1264. data/lib/puppet/vendor/rgen/test/template_language_test/templates/callback_indent_test/a.tpl +12 -0
  1265. data/lib/puppet/vendor/rgen/test/template_language_test/templates/callback_indent_test/b.tpl +5 -0
  1266. data/lib/puppet/vendor/rgen/test/template_language_test/templates/code/array.tpl +11 -0
  1267. data/lib/puppet/vendor/rgen/test/template_language_test/templates/content/author.tpl +7 -0
  1268. data/lib/puppet/vendor/rgen/test/template_language_test/templates/content/chapter.tpl +5 -0
  1269. data/lib/puppet/vendor/rgen/test/template_language_test/templates/define_local_test/local.tpl +8 -0
  1270. data/lib/puppet/vendor/rgen/test/template_language_test/templates/define_local_test/test.tpl +8 -0
  1271. data/lib/puppet/vendor/rgen/test/template_language_test/templates/evaluate_test/test.tpl +7 -0
  1272. data/lib/puppet/vendor/rgen/test/template_language_test/templates/indent_string_test.tpl +12 -0
  1273. data/lib/puppet/vendor/rgen/test/template_language_test/templates/index/c/cmod.tpl +1 -0
  1274. data/lib/puppet/vendor/rgen/test/template_language_test/templates/index/chapter.tpl +3 -0
  1275. data/lib/puppet/vendor/rgen/test/template_language_test/templates/no_backslash_r_test.tpl +5 -0
  1276. data/lib/puppet/vendor/rgen/test/template_language_test/templates/no_indent_test/no_indent.tpl +3 -0
  1277. data/lib/puppet/vendor/rgen/test/template_language_test/templates/no_indent_test/sub1/no_indent.tpl +3 -0
  1278. data/lib/puppet/vendor/rgen/test/template_language_test/templates/no_indent_test/test.tpl +24 -0
  1279. data/lib/puppet/vendor/rgen/test/template_language_test/templates/no_indent_test/test2.tpl +13 -0
  1280. data/lib/puppet/vendor/rgen/test/template_language_test/templates/no_indent_test/test3.tpl +10 -0
  1281. data/lib/puppet/vendor/rgen/test/template_language_test/templates/null_context_test.tpl +17 -0
  1282. data/lib/puppet/vendor/rgen/test/template_language_test/templates/root.tpl +31 -0
  1283. data/lib/puppet/vendor/rgen/test/template_language_test/templates/template_resolution_test/sub1.tpl +9 -0
  1284. data/lib/puppet/vendor/rgen/test/template_language_test/templates/template_resolution_test/sub1/sub1.tpl +3 -0
  1285. data/lib/puppet/vendor/rgen/test/template_language_test/templates/template_resolution_test/test.tpl +4 -0
  1286. data/lib/puppet/vendor/rgen/test/template_language_test/testout.txt +29 -0
  1287. data/lib/puppet/vendor/rgen/test/testmodel/class_model_checker.rb +119 -0
  1288. data/lib/puppet/vendor/rgen/test/testmodel/ea_testmodel.eap +0 -0
  1289. data/lib/puppet/vendor/rgen/test/testmodel/ea_testmodel.xml +1029 -0
  1290. data/lib/puppet/vendor/rgen/test/testmodel/ea_testmodel_partial.xml +317 -0
  1291. data/lib/puppet/vendor/rgen/test/testmodel/ecore_model_checker.rb +101 -0
  1292. data/lib/puppet/vendor/rgen/test/testmodel/manual_testmodel.xml +22 -0
  1293. data/lib/puppet/vendor/rgen/test/testmodel/object_model_checker.rb +67 -0
  1294. data/lib/puppet/vendor/rgen/test/transformer_test.rb +254 -0
  1295. data/lib/puppet/vendor/rgen/test/util/file_cache_map_test.rb +99 -0
  1296. data/lib/puppet/vendor/rgen/test/util/pattern_matcher_test.rb +97 -0
  1297. data/lib/puppet/vendor/rgen/test/util_test.rb +5 -0
  1298. data/lib/puppet/vendor/rgen/test/xml_instantiator_test.rb +160 -0
  1299. data/lib/puppet/vendor/rgen/test/xml_instantiator_test/simple_ecore_model_checker.rb +94 -0
  1300. data/lib/puppet/vendor/rgen/test/xml_instantiator_test/simple_xmi_ecore_instantiator.rb +53 -0
  1301. data/lib/puppet/vendor/rgen/test/xml_instantiator_test/simple_xmi_metamodel.rb +49 -0
  1302. data/lib/puppet/vendor/rgen/test/xml_instantiator_test/simple_xmi_to_ecore.rb +75 -0
  1303. data/lib/puppet/vendor/rgen_patch.rb +132 -0
  1304. data/lib/puppet/vendor/semantic/Gemfile +20 -0
  1305. data/lib/puppet/vendor/semantic/PUPPET_README.md +6 -0
  1306. data/lib/puppet/vendor/semantic/Rakefile +69 -0
  1307. data/lib/puppet/vendor/semantic/lib/semantic.rb +7 -0
  1308. data/lib/puppet/vendor/semantic/lib/semantic/dependency.rb +181 -0
  1309. data/lib/puppet/vendor/semantic/lib/semantic/dependency/graph.rb +60 -0
  1310. data/lib/puppet/vendor/semantic/lib/semantic/dependency/graph_node.rb +117 -0
  1311. data/lib/puppet/vendor/semantic/lib/semantic/dependency/module_release.rb +60 -0
  1312. data/lib/puppet/vendor/semantic/lib/semantic/dependency/source.rb +25 -0
  1313. data/lib/puppet/vendor/semantic/lib/semantic/dependency/unsatisfiable_graph.rb +31 -0
  1314. data/lib/puppet/vendor/semantic/lib/semantic/version.rb +168 -0
  1315. data/lib/puppet/vendor/semantic/lib/semantic/version_range.rb +424 -0
  1316. data/lib/puppet/vendor/semantic/spec/spec_helper.rb +24 -0
  1317. data/lib/puppet/vendor/semantic/spec/unit/semantic/dependency/graph_node_spec.rb +141 -0
  1318. data/lib/puppet/vendor/semantic/spec/unit/semantic/dependency/graph_spec.rb +162 -0
  1319. data/lib/puppet/vendor/semantic/spec/unit/semantic/dependency/module_release_spec.rb +143 -0
  1320. data/lib/puppet/vendor/semantic/spec/unit/semantic/dependency/source_spec.rb +5 -0
  1321. data/lib/puppet/vendor/semantic/spec/unit/semantic/dependency/unsatisfiable_graph_spec.rb +44 -0
  1322. data/lib/puppet/vendor/semantic/spec/unit/semantic/dependency_spec.rb +383 -0
  1323. data/lib/puppet/vendor/semantic/spec/unit/semantic/version_range_spec.rb +307 -0
  1324. data/lib/puppet/vendor/semantic/spec/unit/semantic/version_spec.rb +608 -0
  1325. data/lib/puppet/version.rb +89 -0
  1326. data/lib/puppet_x.rb +8 -0
  1327. data/lib/semver.rb +139 -0
  1328. data/man/man5/puppet.conf.5 +1760 -0
  1329. data/man/man8/extlookup2hiera.8 +10 -0
  1330. data/man/man8/puppet-agent.8 +160 -0
  1331. data/man/man8/puppet-apply.8 +82 -0
  1332. data/man/man8/puppet-ca.8 +182 -0
  1333. data/man/man8/puppet-catalog.8 +263 -0
  1334. data/man/man8/puppet-cert.8 +101 -0
  1335. data/man/man8/puppet-certificate.8 +224 -0
  1336. data/man/man8/puppet-certificate_request.8 +161 -0
  1337. data/man/man8/puppet-certificate_revocation_list.8 +139 -0
  1338. data/man/man8/puppet-config.8 +117 -0
  1339. data/man/man8/puppet-describe.8 +51 -0
  1340. data/man/man8/puppet-device.8 +78 -0
  1341. data/man/man8/puppet-doc.8 +46 -0
  1342. data/man/man8/puppet-epp.8 +349 -0
  1343. data/man/man8/puppet-facts.8 +133 -0
  1344. data/man/man8/puppet-file.8 +189 -0
  1345. data/man/man8/puppet-filebucket.8 +81 -0
  1346. data/man/man8/puppet-help.8 +64 -0
  1347. data/man/man8/puppet-inspect.8 +36 -0
  1348. data/man/man8/puppet-key.8 +132 -0
  1349. data/man/man8/puppet-man.8 +70 -0
  1350. data/man/man8/puppet-master.8 +85 -0
  1351. data/man/man8/puppet-module.8 +448 -0
  1352. data/man/man8/puppet-node.8 +163 -0
  1353. data/man/man8/puppet-parser.8 +107 -0
  1354. data/man/man8/puppet-plugin.8 +73 -0
  1355. data/man/man8/puppet-report.8 +124 -0
  1356. data/man/man8/puppet-resource.8 +88 -0
  1357. data/man/man8/puppet-resource_type.8 +188 -0
  1358. data/man/man8/puppet-status.8 +108 -0
  1359. data/man/man8/puppet.8 +10 -0
  1360. data/spec/fixtures/faulty_face/puppet/face/syntax.rb +8 -0
  1361. data/spec/fixtures/hiera.yaml +9 -0
  1362. data/spec/fixtures/integration/node/environment/sitedir/00_a.pp +2 -0
  1363. data/spec/fixtures/integration/node/environment/sitedir/01_b.pp +6 -0
  1364. data/spec/fixtures/integration/node/environment/sitedir/03_empty.pp +0 -0
  1365. data/spec/fixtures/integration/node/environment/sitedir/04_include.pp +2 -0
  1366. data/spec/fixtures/integration/node/environment/sitedir2/00_a.pp +2 -0
  1367. data/spec/fixtures/integration/node/environment/sitedir2/02_folder/01_b.pp +6 -0
  1368. data/spec/fixtures/integration/node/environment/sitedir2/03_c.pp +1 -0
  1369. data/spec/fixtures/integration/node/environment/sitedir2/04_include.pp +2 -0
  1370. data/spec/fixtures/integration/provider/cron/crontab/create_normal_entry +19 -0
  1371. data/spec/fixtures/integration/provider/cron/crontab/create_special_entry +18 -0
  1372. data/spec/fixtures/integration/provider/cron/crontab/crontab_user1 +15 -0
  1373. data/spec/fixtures/integration/provider/cron/crontab/crontab_user2 +4 -0
  1374. data/spec/fixtures/integration/provider/cron/crontab/modify_entry +13 -0
  1375. data/spec/fixtures/integration/provider/cron/crontab/moved_cronjob_input1 +15 -0
  1376. data/spec/fixtures/integration/provider/cron/crontab/moved_cronjob_input2 +6 -0
  1377. data/spec/fixtures/integration/provider/cron/crontab/purged +8 -0
  1378. data/spec/fixtures/integration/provider/cron/crontab/remove_named_resource +12 -0
  1379. data/spec/fixtures/integration/provider/cron/crontab/remove_unnamed_resource +14 -0
  1380. data/spec/fixtures/integration/provider/cron/crontab/unspecialized +15 -0
  1381. data/spec/fixtures/integration/provider/mailalias/aliases/test1 +31 -0
  1382. data/spec/fixtures/integration/provider/sshkey/sample +21 -0
  1383. data/spec/fixtures/java.tgz +0 -0
  1384. data/spec/fixtures/manifests/site.pp +0 -0
  1385. data/spec/fixtures/module.tar.gz +0 -0
  1386. data/spec/fixtures/releases/jamtur01-apache/Modulefile +2 -0
  1387. data/spec/fixtures/releases/jamtur01-apache/files/httpd +24 -0
  1388. data/spec/fixtures/releases/jamtur01-apache/files/test.vhost +18 -0
  1389. data/spec/fixtures/releases/jamtur01-apache/lib/puppet/provider/a2mod/debian.rb +21 -0
  1390. data/spec/fixtures/releases/jamtur01-apache/lib/puppet/type/a2mod.rb +12 -0
  1391. data/spec/fixtures/releases/jamtur01-apache/manifests/dev.pp +5 -0
  1392. data/spec/fixtures/releases/jamtur01-apache/manifests/init.pp +34 -0
  1393. data/spec/fixtures/releases/jamtur01-apache/manifests/params.pp +17 -0
  1394. data/spec/fixtures/releases/jamtur01-apache/manifests/php.pp +5 -0
  1395. data/spec/fixtures/releases/jamtur01-apache/manifests/ssl.pp +15 -0
  1396. data/spec/fixtures/releases/jamtur01-apache/manifests/vhost.pp +15 -0
  1397. data/spec/fixtures/releases/jamtur01-apache/metadata.json +1 -0
  1398. data/spec/fixtures/releases/jamtur01-apache/templates/vhost-default.conf.erb +20 -0
  1399. data/spec/fixtures/releases/jamtur01-apache/tests/apache.pp +1 -0
  1400. data/spec/fixtures/releases/jamtur01-apache/tests/dev.pp +1 -0
  1401. data/spec/fixtures/releases/jamtur01-apache/tests/init.pp +1 -0
  1402. data/spec/fixtures/releases/jamtur01-apache/tests/php.pp +1 -0
  1403. data/spec/fixtures/releases/jamtur01-apache/tests/ssl.pp +1 -0
  1404. data/spec/fixtures/releases/jamtur01-apache/tests/vhost.pp +2 -0
  1405. data/spec/fixtures/stdlib.tgz +0 -0
  1406. data/spec/fixtures/unit/application/environments/production/data/common.yaml +7 -0
  1407. data/spec/fixtures/unit/application/environments/production/environment.conf +1 -0
  1408. data/spec/fixtures/unit/application/environments/production/manifests/site.pp +1 -0
  1409. data/spec/fixtures/unit/application/environments/puppet_func_provider/environment.conf +1 -0
  1410. data/spec/fixtures/unit/application/environments/puppet_func_provider/functions/data.pp +10 -0
  1411. data/spec/fixtures/unit/application/environments/puppet_func_provider/manifests/site.pp +1 -0
  1412. data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/data/bad.json +3 -0
  1413. data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/environment.conf +2 -0
  1414. data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/hiera.yaml +5 -0
  1415. data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/manifests/site.pp +5 -0
  1416. data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/data/bad.yaml +3 -0
  1417. data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/environment.conf +2 -0
  1418. data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/hiera.yaml +5 -0
  1419. data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/manifests/site.pp +5 -0
  1420. data/spec/fixtures/unit/data_providers/environments/hiera_defaults/data/common.yaml +2 -0
  1421. data/spec/fixtures/unit/data_providers/environments/hiera_defaults/environment.conf +2 -0
  1422. data/spec/fixtures/unit/data_providers/environments/hiera_defaults/manifests/site.pp +1 -0
  1423. data/spec/fixtures/unit/data_providers/environments/hiera_defaults/modules/one/data/common.yaml +2 -0
  1424. data/spec/fixtures/unit/data_providers/environments/hiera_defaults/modules/one/manifests/init.pp +5 -0
  1425. data/spec/fixtures/unit/data_providers/environments/hiera_defaults/modules/one/metadata.json +9 -0
  1426. data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/first.json +3 -0
  1427. data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/name.yaml +2 -0
  1428. data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/second.json +3 -0
  1429. data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/single.yaml +2 -0
  1430. data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data2/single.yaml +2 -0
  1431. data/spec/fixtures/unit/data_providers/environments/hiera_env_config/environment.conf +2 -0
  1432. data/spec/fixtures/unit/data_providers/environments/hiera_env_config/hiera.yaml +18 -0
  1433. data/spec/fixtures/unit/data_providers/environments/hiera_env_config/manifests/site.pp +5 -0
  1434. data/spec/fixtures/unit/data_providers/environments/hiera_misc/data/common.yaml +46 -0
  1435. data/spec/fixtures/unit/data_providers/environments/hiera_misc/environment.conf +2 -0
  1436. data/spec/fixtures/unit/data_providers/environments/hiera_misc/manifests/site.pp +1 -0
  1437. data/spec/fixtures/unit/data_providers/environments/hiera_misc/modules/one/data/common.yaml +30 -0
  1438. data/spec/fixtures/unit/data_providers/environments/hiera_misc/modules/one/manifests/init.pp +13 -0
  1439. data/spec/fixtures/unit/data_providers/environments/hiera_misc/modules/one/metadata.json +9 -0
  1440. data/spec/fixtures/unit/data_providers/environments/hiera_module_config/data/common.yaml +4 -0
  1441. data/spec/fixtures/unit/data_providers/environments/hiera_module_config/data/specific.yaml +4 -0
  1442. data/spec/fixtures/unit/data_providers/environments/hiera_module_config/environment.conf +2 -0
  1443. data/spec/fixtures/unit/data_providers/environments/hiera_module_config/hiera.yaml +7 -0
  1444. data/spec/fixtures/unit/data_providers/environments/hiera_module_config/manifests/site.pp +1 -0
  1445. data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/first.json +3 -0
  1446. data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/name.yaml +1 -0
  1447. data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/second.json +3 -0
  1448. data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/single.yaml +2 -0
  1449. data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data2/single.yaml +2 -0
  1450. data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/hiera.yaml +18 -0
  1451. data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/manifests/init.pp +5 -0
  1452. data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/metadata.json +9 -0
  1453. data/spec/fixtures/unit/data_providers/environments/hiera_modules/data/common.yaml +4 -0
  1454. data/spec/fixtures/unit/data_providers/environments/hiera_modules/data/specific.yaml +4 -0
  1455. data/spec/fixtures/unit/data_providers/environments/hiera_modules/environment.conf +2 -0
  1456. data/spec/fixtures/unit/data_providers/environments/hiera_modules/hiera.yaml +7 -0
  1457. data/spec/fixtures/unit/data_providers/environments/hiera_modules/manifests/site.pp +1 -0
  1458. data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/data/common.yaml +6 -0
  1459. data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/hiera.yaml +5 -0
  1460. data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/manifests/init.pp +2 -0
  1461. data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/metadata.json +9 -0
  1462. data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/data/common.yaml +4 -0
  1463. data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/hiera.yaml +5 -0
  1464. data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/manifests/init.pp +3 -0
  1465. data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/metadata.json +9 -0
  1466. data/spec/fixtures/unit/data_providers/environments/production/environment.conf +2 -0
  1467. data/spec/fixtures/unit/data_providers/environments/production/lib/puppet/functions/environment/data.rb +9 -0
  1468. data/spec/fixtures/unit/data_providers/environments/production/modules/abc/lib/puppet/bindings/abc/default.rb +9 -0
  1469. data/spec/fixtures/unit/data_providers/environments/production/modules/abc/lib/puppet/functions/abc/data.rb +8 -0
  1470. data/spec/fixtures/unit/data_providers/environments/production/modules/abc/manifests/init.pp +9 -0
  1471. data/spec/fixtures/unit/data_providers/environments/production/modules/xyz/functions/data.pp +6 -0
  1472. data/spec/fixtures/unit/data_providers/environments/production/modules/xyz/lib/puppet/bindings/xyz/default.rb +9 -0
  1473. data/spec/fixtures/unit/data_providers/environments/production/modules/xyz/manifests/init.pp +9 -0
  1474. data/spec/fixtures/unit/data_providers/environments/sample/environment.conf +2 -0
  1475. data/spec/fixtures/unit/data_providers/environments/sample/manifests/site.pp +6 -0
  1476. data/spec/fixtures/unit/data_providers/environments/sample/modules/dataprovider/lib/puppet/bindings/dataprovider/default.rb +54 -0
  1477. data/spec/fixtures/unit/data_providers/environments/sample/modules/dataprovider/lib/puppet_x/helindbe/sample_env_data.rb +32 -0
  1478. data/spec/fixtures/unit/data_providers/environments/sample/modules/dataprovider/lib/puppet_x/helindbe/sample_module_data.rb +33 -0
  1479. data/spec/fixtures/unit/data_providers/environments/sample/modules/dataprovider/manifests/init.pp +5 -0
  1480. data/spec/fixtures/unit/functions/lookup/environments/production/environment.conf +2 -0
  1481. data/spec/fixtures/unit/functions/lookup/environments/production/lib/puppet/functions/environment/data.rb +13 -0
  1482. data/spec/fixtures/unit/functions/lookup/environments/production/modules/abc/lib/puppet/bindings/abc/default.rb +9 -0
  1483. data/spec/fixtures/unit/functions/lookup/environments/production/modules/abc/lib/puppet/functions/abc/data.rb +9 -0
  1484. data/spec/fixtures/unit/functions/lookup/environments/production/modules/abc/manifests/init.pp +8 -0
  1485. data/spec/fixtures/unit/functions/lookup/environments/production/modules/bad_data/lib/puppet/bindings/bad_data/default.rb +9 -0
  1486. data/spec/fixtures/unit/functions/lookup/environments/production/modules/bad_data/lib/puppet/functions/bad_data/data.rb +7 -0
  1487. data/spec/fixtures/unit/functions/lookup/environments/production/modules/bad_data/manifests/init.pp +2 -0
  1488. data/spec/fixtures/unit/functions/lookup/environments/production/modules/bca/lib/puppet/bindings/bca/default.rb +9 -0
  1489. data/spec/fixtures/unit/functions/lookup/environments/production/modules/bca/lib/puppet/functions/bca/data.rb +9 -0
  1490. data/spec/fixtures/unit/functions/lookup/environments/production/modules/bca/manifests/init.pp +2 -0
  1491. data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_json/data/empty.json +0 -0
  1492. data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_json/hiera.yaml +5 -0
  1493. data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_json/manifests/init.pp +2 -0
  1494. data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_json/metadata.json +9 -0
  1495. data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_yaml/data/empty.yaml +1 -0
  1496. data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_yaml/hiera.yaml +5 -0
  1497. data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_yaml/manifests/init.pp +2 -0
  1498. data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_yaml/metadata.json +9 -0
  1499. data/spec/fixtures/unit/functions/lookup/environments/production/modules/hieraprovider/data/first.json +4 -0
  1500. data/spec/fixtures/unit/functions/lookup/environments/production/modules/hieraprovider/hiera.yaml +8 -0
  1501. data/spec/fixtures/unit/functions/lookup/environments/production/modules/hieraprovider/manifests/init.pp +5 -0
  1502. data/spec/fixtures/unit/functions/lookup/environments/production/modules/hieraprovider/metadata.json +9 -0
  1503. data/spec/fixtures/unit/functions/lookup/environments/production/modules/meta/lib/puppet/functions/meta/data.rb +9 -0
  1504. data/spec/fixtures/unit/functions/lookup/environments/production/modules/meta/manifests/init.pp +3 -0
  1505. data/spec/fixtures/unit/functions/lookup/environments/production/modules/meta/metadata.json +9 -0
  1506. data/spec/fixtures/unit/functions/lookup/environments/production/modules/metawcp/lib/puppet/bindings/metawcp/default.rb +10 -0
  1507. data/spec/fixtures/unit/functions/lookup/environments/production/modules/metawcp/lib/puppet_x/thallgren/sample_module_data.rb +23 -0
  1508. data/spec/fixtures/unit/functions/lookup/environments/production/modules/metawcp/manifests/init.pp +3 -0
  1509. data/spec/fixtures/unit/functions/lookup/environments/production/modules/metawcp/metadata.json +9 -0
  1510. data/spec/fixtures/unit/functions/lookup/environments/production/modules/no_provider/manifests/init.pp +2 -0
  1511. data/spec/fixtures/unit/indirector/data_binding/hiera/global.yaml +10 -0
  1512. data/spec/fixtures/unit/indirector/data_binding/hiera/invalid.yaml +1 -0
  1513. data/spec/fixtures/unit/indirector/hiera/global.yaml +10 -0
  1514. data/spec/fixtures/unit/indirector/hiera/invalid.yaml +1 -0
  1515. data/spec/fixtures/unit/module/trailing-comma.json +24 -0
  1516. data/spec/fixtures/unit/parser/functions/create_resources/foo/manifests/init.pp +3 -0
  1517. data/spec/fixtures/unit/parser/functions/create_resources/foo/manifests/wrongdefine.pp +3 -0
  1518. data/spec/fixtures/unit/parser/lexer/aliastest.pp +16 -0
  1519. data/spec/fixtures/unit/parser/lexer/append.pp +11 -0
  1520. data/spec/fixtures/unit/parser/lexer/argumentdefaults.pp +14 -0
  1521. data/spec/fixtures/unit/parser/lexer/arithmetic_expression.pp +8 -0
  1522. data/spec/fixtures/unit/parser/lexer/arraytrailingcomma.pp +3 -0
  1523. data/spec/fixtures/unit/parser/lexer/casestatement.pp +65 -0
  1524. data/spec/fixtures/unit/parser/lexer/classheirarchy.pp +15 -0
  1525. data/spec/fixtures/unit/parser/lexer/classincludes.pp +17 -0
  1526. data/spec/fixtures/unit/parser/lexer/classpathtest.pp +11 -0
  1527. data/spec/fixtures/unit/parser/lexer/collection.pp +10 -0
  1528. data/spec/fixtures/unit/parser/lexer/collection_override.pp +8 -0
  1529. data/spec/fixtures/unit/parser/lexer/collection_within_virtual_definitions.pp +20 -0
  1530. data/spec/fixtures/unit/parser/lexer/componentmetaparams.pp +11 -0
  1531. data/spec/fixtures/unit/parser/lexer/componentrequire.pp +8 -0
  1532. data/spec/fixtures/unit/parser/lexer/deepclassheirarchy.pp +23 -0
  1533. data/spec/fixtures/unit/parser/lexer/defineoverrides.pp +17 -0
  1534. data/spec/fixtures/unit/parser/lexer/emptyclass.pp +9 -0
  1535. data/spec/fixtures/unit/parser/lexer/emptyexec.pp +3 -0
  1536. data/spec/fixtures/unit/parser/lexer/emptyifelse.pp +9 -0
  1537. data/spec/fixtures/unit/parser/lexer/falsevalues.pp +3 -0
  1538. data/spec/fixtures/unit/parser/lexer/filecreate.pp +11 -0
  1539. data/spec/fixtures/unit/parser/lexer/fqdefinition.pp +5 -0
  1540. data/spec/fixtures/unit/parser/lexer/fqparents.pp +11 -0
  1541. data/spec/fixtures/unit/parser/lexer/funccomma.pp +5 -0
  1542. data/spec/fixtures/unit/parser/lexer/hash.pp +33 -0
  1543. data/spec/fixtures/unit/parser/lexer/ifexpression.pp +12 -0
  1544. data/spec/fixtures/unit/parser/lexer/implicititeration.pp +15 -0
  1545. data/spec/fixtures/unit/parser/lexer/multilinecomments.pp +10 -0
  1546. data/spec/fixtures/unit/parser/lexer/multipleclass.pp +9 -0
  1547. data/spec/fixtures/unit/parser/lexer/multipleinstances.pp +7 -0
  1548. data/spec/fixtures/unit/parser/lexer/multisubs.pp +13 -0
  1549. data/spec/fixtures/unit/parser/lexer/namevartest.pp +9 -0
  1550. data/spec/fixtures/unit/parser/lexer/scopetest.pp +13 -0
  1551. data/spec/fixtures/unit/parser/lexer/selectorvalues.pp +49 -0
  1552. data/spec/fixtures/unit/parser/lexer/simpledefaults.pp +5 -0
  1553. data/spec/fixtures/unit/parser/lexer/simpleselector.pp +38 -0
  1554. data/spec/fixtures/unit/parser/lexer/singleary.pp +19 -0
  1555. data/spec/fixtures/unit/parser/lexer/singlequote.pp +11 -0
  1556. data/spec/fixtures/unit/parser/lexer/singleselector.pp +22 -0
  1557. data/spec/fixtures/unit/parser/lexer/subclass_name_duplication.pp +11 -0
  1558. data/spec/fixtures/unit/parser/lexer/tag.pp +9 -0
  1559. data/spec/fixtures/unit/parser/lexer/tagged.pp +35 -0
  1560. data/spec/fixtures/unit/parser/lexer/virtualresources.pp +14 -0
  1561. data/spec/fixtures/unit/pops/binder/bindings_composer/ok/binder_config.yaml +10 -0
  1562. data/spec/fixtures/unit/pops/binder/bindings_composer/ok/lib/puppet/bindings/confdirtest.rb +10 -0
  1563. data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/awesome2/lib/puppet/bindings/awesome2/default.rb +20 -0
  1564. data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/awesome2/lib/puppet_x/awesome2/echo_scheme_handler.rb +18 -0
  1565. data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/bad/lib/puppet/bindings/bad/default.rb +5 -0
  1566. data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/good/lib/puppet/bindings/good/default.rb +6 -0
  1567. data/spec/fixtures/unit/pops/binder/config/binder_config/nolayer/binder_config.yaml +6 -0
  1568. data/spec/fixtures/unit/pops/binder/config/binder_config/ok/binder_config.yaml +9 -0
  1569. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/functions/usee_puppet.pp +3 -0
  1570. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/lib/puppet/functions/usee/callee.rb +5 -0
  1571. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/lib/puppet/functions/usee/usee_ruby.rb +6 -0
  1572. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/manifests/init.pp +8 -0
  1573. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/types/zero.pp +1 -0
  1574. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee2/lib/puppet/functions/usee2/callee.rb +5 -0
  1575. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/functions/puppet_calling_puppet.pp +5 -0
  1576. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/functions/puppet_calling_puppet_init.pp +5 -0
  1577. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/functions/puppet_calling_ruby.pp +5 -0
  1578. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/caller.rb +5 -0
  1579. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/caller2.rb +5 -0
  1580. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/ruby_calling_puppet.rb +5 -0
  1581. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/ruby_calling_puppet_init.rb +5 -0
  1582. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/ruby_calling_ruby.rb +5 -0
  1583. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/manifests/init.pp +81 -0
  1584. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/metadata.json +10 -0
  1585. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/types/withuseeone.pp +1 -0
  1586. data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/types/withuseezero.pp +1 -0
  1587. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/callee.rb +8 -0
  1588. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/callee_ws.rb +8 -0
  1589. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/metadata.json +9 -0
  1590. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/functions/puppetcalled.pp +3 -0
  1591. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/functions/puppetcaller.pp +3 -0
  1592. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/functions/puppetcaller4.pp +3 -0
  1593. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/lib/puppet/functions/user/caller.rb +5 -0
  1594. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/lib/puppet/functions/user/caller_ws.rb +12 -0
  1595. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/lib/puppet/functions/user/callingpuppet.rb +5 -0
  1596. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/metadata.json +9 -0
  1597. data/spec/fixtures/unit/pops/loaders/loaders/module_no_lib/modules/modulea/functions/hello.pp +3 -0
  1598. data/spec/fixtures/unit/pops/loaders/loaders/module_no_lib/modules/modulea/manifests/init.pp +3 -0
  1599. data/spec/fixtures/unit/pops/loaders/loaders/module_no_lib/modules/modulea/metadata.json +10 -0
  1600. data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/functions/hello.pp +3 -0
  1601. data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/functions/subspace/hello.pp +3 -0
  1602. data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/lib/puppet/functions/modulea/rb_func_a.rb +5 -0
  1603. data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/lib/puppet/functions/rb_func_a.rb +5 -0
  1604. data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/manifests/init.pp +3 -0
  1605. data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/metadata.json +10 -0
  1606. data/spec/fixtures/unit/pops/loaders/loaders/wo_metadata_module/modules/moduleb/lib/puppet/functions/moduleb/rb_func_b.rb +6 -0
  1607. data/spec/fixtures/unit/pops/loaders/loaders/wo_metadata_module/modules/moduleb/manifests/init.pp +3 -0
  1608. data/spec/fixtures/unit/pops/parser/lexer/aliastest.pp +16 -0
  1609. data/spec/fixtures/unit/pops/parser/lexer/append.pp +11 -0
  1610. data/spec/fixtures/unit/pops/parser/lexer/argumentdefaults.pp +14 -0
  1611. data/spec/fixtures/unit/pops/parser/lexer/arithmetic_expression.pp +8 -0
  1612. data/spec/fixtures/unit/pops/parser/lexer/arraytrailingcomma.pp +3 -0
  1613. data/spec/fixtures/unit/pops/parser/lexer/casestatement.pp +65 -0
  1614. data/spec/fixtures/unit/pops/parser/lexer/classheirarchy.pp +15 -0
  1615. data/spec/fixtures/unit/pops/parser/lexer/classincludes.pp +17 -0
  1616. data/spec/fixtures/unit/pops/parser/lexer/classpathtest.pp +11 -0
  1617. data/spec/fixtures/unit/pops/parser/lexer/collection.pp +10 -0
  1618. data/spec/fixtures/unit/pops/parser/lexer/collection_override.pp +8 -0
  1619. data/spec/fixtures/unit/pops/parser/lexer/collection_within_virtual_definitions.pp +20 -0
  1620. data/spec/fixtures/unit/pops/parser/lexer/componentmetaparams.pp +11 -0
  1621. data/spec/fixtures/unit/pops/parser/lexer/componentrequire.pp +8 -0
  1622. data/spec/fixtures/unit/pops/parser/lexer/deepclassheirarchy.pp +23 -0
  1623. data/spec/fixtures/unit/pops/parser/lexer/defineoverrides.pp +17 -0
  1624. data/spec/fixtures/unit/pops/parser/lexer/emptyclass.pp +9 -0
  1625. data/spec/fixtures/unit/pops/parser/lexer/emptyexec.pp +3 -0
  1626. data/spec/fixtures/unit/pops/parser/lexer/emptyifelse.pp +9 -0
  1627. data/spec/fixtures/unit/pops/parser/lexer/falsevalues.pp +3 -0
  1628. data/spec/fixtures/unit/pops/parser/lexer/filecreate.pp +11 -0
  1629. data/spec/fixtures/unit/pops/parser/lexer/fqdefinition.pp +5 -0
  1630. data/spec/fixtures/unit/pops/parser/lexer/fqparents.pp +11 -0
  1631. data/spec/fixtures/unit/pops/parser/lexer/funccomma.pp +5 -0
  1632. data/spec/fixtures/unit/pops/parser/lexer/hash.pp +33 -0
  1633. data/spec/fixtures/unit/pops/parser/lexer/ifexpression.pp +12 -0
  1634. data/spec/fixtures/unit/pops/parser/lexer/implicititeration.pp +15 -0
  1635. data/spec/fixtures/unit/pops/parser/lexer/multilinecomments.pp +10 -0
  1636. data/spec/fixtures/unit/pops/parser/lexer/multipleclass.pp +9 -0
  1637. data/spec/fixtures/unit/pops/parser/lexer/multipleinstances.pp +7 -0
  1638. data/spec/fixtures/unit/pops/parser/lexer/multisubs.pp +13 -0
  1639. data/spec/fixtures/unit/pops/parser/lexer/namevartest.pp +9 -0
  1640. data/spec/fixtures/unit/pops/parser/lexer/scopetest.pp +13 -0
  1641. data/spec/fixtures/unit/pops/parser/lexer/selectorvalues.pp +49 -0
  1642. data/spec/fixtures/unit/pops/parser/lexer/simpledefaults.pp +5 -0
  1643. data/spec/fixtures/unit/pops/parser/lexer/simpleselector.pp +38 -0
  1644. data/spec/fixtures/unit/pops/parser/lexer/singleary.pp +19 -0
  1645. data/spec/fixtures/unit/pops/parser/lexer/singlequote.pp +11 -0
  1646. data/spec/fixtures/unit/pops/parser/lexer/singleselector.pp +22 -0
  1647. data/spec/fixtures/unit/pops/parser/lexer/subclass_name_duplication.pp +11 -0
  1648. data/spec/fixtures/unit/pops/parser/lexer/tag.pp +9 -0
  1649. data/spec/fixtures/unit/pops/parser/lexer/tagged.pp +35 -0
  1650. data/spec/fixtures/unit/pops/parser/lexer/virtualresources.pp +14 -0
  1651. data/spec/fixtures/unit/provider/augeas/augeas/augeas/lenses/test.aug +13 -0
  1652. data/spec/fixtures/unit/provider/augeas/augeas/etc/fstab +10 -0
  1653. data/spec/fixtures/unit/provider/augeas/augeas/etc/hosts +6 -0
  1654. data/spec/fixtures/unit/provider/augeas/augeas/etc/test +3 -0
  1655. data/spec/fixtures/unit/provider/augeas/augeas/test.aug +13 -0
  1656. data/spec/fixtures/unit/provider/cron/crontab/single_line.yaml +272 -0
  1657. data/spec/fixtures/unit/provider/cron/crontab/vixie_header.txt +3 -0
  1658. data/spec/fixtures/unit/provider/cron/parsed/managed +6 -0
  1659. data/spec/fixtures/unit/provider/cron/parsed/simple +9 -0
  1660. data/spec/fixtures/unit/provider/host/parsed/valid_hosts +19 -0
  1661. data/spec/fixtures/unit/provider/mount/mount-output.aix.txt +7 -0
  1662. data/spec/fixtures/unit/provider/mount/parsed/aix.filesystems +152 -0
  1663. data/spec/fixtures/unit/provider/mount/parsed/aix.mount +11 -0
  1664. data/spec/fixtures/unit/provider/mount/parsed/darwin.mount +6 -0
  1665. data/spec/fixtures/unit/provider/mount/parsed/freebsd.fstab +8 -0
  1666. data/spec/fixtures/unit/provider/mount/parsed/freebsd.mount +3 -0
  1667. data/spec/fixtures/unit/provider/mount/parsed/hpux.mount +17 -0
  1668. data/spec/fixtures/unit/provider/mount/parsed/linux.fstab +11 -0
  1669. data/spec/fixtures/unit/provider/mount/parsed/linux.mount +5 -0
  1670. data/spec/fixtures/unit/provider/mount/parsed/netbsd.fstab +9 -0
  1671. data/spec/fixtures/unit/provider/mount/parsed/netbsd.mount +8 -0
  1672. data/spec/fixtures/unit/provider/mount/parsed/openbsd.fstab +4 -0
  1673. data/spec/fixtures/unit/provider/mount/parsed/openbsd.mount +4 -0
  1674. data/spec/fixtures/unit/provider/mount/parsed/solaris.fstab +11 -0
  1675. data/spec/fixtures/unit/provider/mount/parsed/solaris.mount +6 -0
  1676. data/spec/fixtures/unit/provider/naginator/define_empty_param +6 -0
  1677. data/spec/fixtures/unit/provider/package/gem/gem-list-single-package +4 -0
  1678. data/spec/fixtures/unit/provider/package/gem/line-with-1.8.5-warning +14 -0
  1679. data/spec/fixtures/unit/provider/package/openbsd/pkginfo.detail +19 -0
  1680. data/spec/fixtures/unit/provider/package/openbsd/pkginfo.list +10 -0
  1681. data/spec/fixtures/unit/provider/package/openbsd/pkginfo.query +1 -0
  1682. data/spec/fixtures/unit/provider/package/openbsd/pkginfo_flavors.list +2 -0
  1683. data/spec/fixtures/unit/provider/package/pkg/dummy_implicit_version +3 -0
  1684. data/spec/fixtures/unit/provider/package/pkg/dummy_solaris10 +1 -0
  1685. data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.certificate_warning +2 -0
  1686. data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.installed +1 -0
  1687. data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.known +1 -0
  1688. data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.installed +1 -0
  1689. data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.known +1 -0
  1690. data/spec/fixtures/unit/provider/package/pkg/incomplete +1 -0
  1691. data/spec/fixtures/unit/provider/package/pkg/solaris11 +2 -0
  1692. data/spec/fixtures/unit/provider/package/pkg/unknown_status +12 -0
  1693. data/spec/fixtures/unit/provider/package/pkgng/pkg.info +8 -0
  1694. data/spec/fixtures/unit/provider/package/pkgng/pkg.query +1 -0
  1695. data/spec/fixtures/unit/provider/package/pkgng/pkg.query_absent +1 -0
  1696. data/spec/fixtures/unit/provider/package/pkgng/pkg.version +3 -0
  1697. data/spec/fixtures/unit/provider/package/sun/dummy.server +12 -0
  1698. data/spec/fixtures/unit/provider/package/sun/simple +24 -0
  1699. data/spec/fixtures/unit/provider/package/yum/yum-check-update-broken-notices.txt +187 -0
  1700. data/spec/fixtures/unit/provider/package/yum/yum-check-update-multiline.txt +201 -0
  1701. data/spec/fixtures/unit/provider/package/yum/yum-check-update-obsoletes.txt +195 -0
  1702. data/spec/fixtures/unit/provider/package/yum/yum-check-update-security.txt +184 -0
  1703. data/spec/fixtures/unit/provider/package/yum/yum-check-update-simple.txt +12 -0
  1704. data/spec/fixtures/unit/provider/package/zypper/zypper-list-updates-SLES11sp1.out +369 -0
  1705. data/spec/fixtures/unit/provider/package/zypper/zypper-list-updates-empty.out +3 -0
  1706. data/spec/fixtures/unit/provider/parsedfile/simple.txt +7 -0
  1707. data/spec/fixtures/unit/provider/service/gentoo/rc_update_show +30 -0
  1708. data/spec/fixtures/unit/provider/service/openbsd/rcctl_getall +6 -0
  1709. data/spec/fixtures/unit/provider/service/openrc/rcservice_list +8 -0
  1710. data/spec/fixtures/unit/provider/service/openrc/rcstatus +43 -0
  1711. data/spec/fixtures/unit/provider/service/smf/svcs.out +3 -0
  1712. data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services +7 -0
  1713. data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys +7 -0
  1714. data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys1 +3 -0
  1715. data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys2 +1 -0
  1716. data/spec/fixtures/unit/provider/sshkey/parsed/sample +21 -0
  1717. data/spec/fixtures/unit/provider/sshkey/parsed/sample_with_blank_lines +8 -0
  1718. data/spec/fixtures/unit/provider/zfs/zfs/zfs-list.out +2 -0
  1719. data/spec/fixtures/unit/provider/zpool/zpool/zpool-list.out +2 -0
  1720. data/spec/fixtures/unit/reports/tagmail/tagmail_email.conf +2 -0
  1721. data/spec/fixtures/unit/reports/tagmail/tagmail_failers.conf +3 -0
  1722. data/spec/fixtures/unit/reports/tagmail/tagmail_passers.conf +30 -0
  1723. data/spec/fixtures/unit/ssl/certificate/old-style-cert-exts.pem +33 -0
  1724. data/spec/fixtures/unit/ssl/certificate_request/old-style-cert-request.pem +28 -0
  1725. data/spec/fixtures/unit/type/user/authorized_keys +6 -0
  1726. data/spec/fixtures/unit/util/filetype/aixtab_output +44 -0
  1727. data/spec/fixtures/unit/util/filetype/suntab_output +9 -0
  1728. data/spec/fixtures/unit/util/monkey_patches/x509.pem +32 -0
  1729. data/spec/fixtures/unit/util/rdoc/basic.pp +16 -0
  1730. data/spec/fixtures/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_get/should_yield_to_the_block.yml +24 -0
  1731. data/spec/fixtures/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_head/should_yield_to_the_block.yml +24 -0
  1732. data/spec/fixtures/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_post/should_yield_to_the_block.yml +24 -0
  1733. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_fetch_if_not_on_the_local_disk.yml +205 -0
  1734. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_not_update_if_content_on_disk_is_up-to-date.yml +213 -0
  1735. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_update_if_content_differs_on_disk.yml +213 -0
  1736. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_mtime_is_older_on_disk.yml +205 -0
  1737. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_no_header_specified.yml +197 -0
  1738. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_not_on_the_local_disk.yml +205 -0
  1739. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_not_update_if_mtime_is_newer_on_disk.yml +205 -0
  1740. data/spec/fixtures/yaml/report2.6.x.yaml +190 -0
  1741. data/spec/fixtures/yaml/test.local.yaml +16 -0
  1742. data/spec/integration/agent/logging_spec.rb +178 -0
  1743. data/spec/integration/application/apply_spec.rb +206 -0
  1744. data/spec/integration/application/doc_spec.rb +15 -0
  1745. data/spec/integration/configurer_spec.rb +67 -0
  1746. data/spec/integration/data_binding_spec.rb +229 -0
  1747. data/spec/integration/defaults_spec.rb +246 -0
  1748. data/spec/integration/directory_environments_spec.rb +51 -0
  1749. data/spec/integration/environments/default_manifest_spec.rb +215 -0
  1750. data/spec/integration/environments/setting_hooks_spec.rb +27 -0
  1751. data/spec/integration/environments/settings_interpolation_spec.rb +110 -0
  1752. data/spec/integration/environments/settings_spec.rb +100 -0
  1753. data/spec/integration/faces/ca_spec.rb +354 -0
  1754. data/spec/integration/faces/documentation_spec.rb +58 -0
  1755. data/spec/integration/faces/plugin_spec.rb +58 -0
  1756. data/spec/integration/file_bucket/file_spec.rb +54 -0
  1757. data/spec/integration/file_serving/content_spec.rb +8 -0
  1758. data/spec/integration/file_serving/fileset_spec.rb +13 -0
  1759. data/spec/integration/file_serving/metadata_spec.rb +9 -0
  1760. data/spec/integration/file_serving/terminus_helper_spec.rb +21 -0
  1761. data/spec/integration/file_system/uniquefile_spec.rb +29 -0
  1762. data/spec/integration/indirector/catalog/compiler_spec.rb +76 -0
  1763. data/spec/integration/indirector/direct_file_server_spec.rb +92 -0
  1764. data/spec/integration/indirector/facts/facter_spec.rb +119 -0
  1765. data/spec/integration/indirector/file_content/file_server_spec.rb +91 -0
  1766. data/spec/integration/indirector/file_metadata/file_server_spec.rb +67 -0
  1767. data/spec/integration/indirector/node/ldap_spec.rb +14 -0
  1768. data/spec/integration/module_tool/tar/mini_spec.rb +28 -0
  1769. data/spec/integration/network/authconfig_spec.rb +257 -0
  1770. data/spec/integration/network/formats_spec.rb +91 -0
  1771. data/spec/integration/network/http/api/indirected_routes_spec.rb +56 -0
  1772. data/spec/integration/node/environment_spec.rb +135 -0
  1773. data/spec/integration/node/facts_spec.rb +41 -0
  1774. data/spec/integration/node_spec.rb +82 -0
  1775. data/spec/integration/parser/catalog_spec.rb +94 -0
  1776. data/spec/integration/parser/class_spec.rb +33 -0
  1777. data/spec/integration/parser/collection_spec.rb +308 -0
  1778. data/spec/integration/parser/compiler_spec.rb +1783 -0
  1779. data/spec/integration/parser/conditionals_spec.rb +92 -0
  1780. data/spec/integration/parser/dynamic_scoping_spec.rb +67 -0
  1781. data/spec/integration/parser/environment_spec.rb +47 -0
  1782. data/spec/integration/parser/functions/require_spec.rb +43 -0
  1783. data/spec/integration/parser/node_spec.rb +172 -0
  1784. data/spec/integration/parser/parameter_defaults_spec.rb +336 -0
  1785. data/spec/integration/parser/resource_expressions_spec.rb +220 -0
  1786. data/spec/integration/parser/scope_spec.rb +666 -0
  1787. data/spec/integration/parser/undef_param_spec.rb +95 -0
  1788. data/spec/integration/provider/cron/crontab_spec.rb +241 -0
  1789. data/spec/integration/provider/mailalias/aliases_spec.rb +10 -0
  1790. data/spec/integration/provider/mount_spec.rb +161 -0
  1791. data/spec/integration/provider/package_spec.rb +35 -0
  1792. data/spec/integration/provider/service/init_spec.rb +46 -0
  1793. data/spec/integration/provider/service/systemd_spec.rb +20 -0
  1794. data/spec/integration/provider/service/windows_spec.rb +48 -0
  1795. data/spec/integration/provider/ssh_authorized_key_spec.rb +219 -0
  1796. data/spec/integration/provider/sshkey_spec.rb +159 -0
  1797. data/spec/integration/provider/yumrepo_spec.rb +127 -0
  1798. data/spec/integration/reference/providers_spec.rb +16 -0
  1799. data/spec/integration/reports_spec.rb +14 -0
  1800. data/spec/integration/resource/catalog_spec.rb +54 -0
  1801. data/spec/integration/resource/type_collection_spec.rb +79 -0
  1802. data/spec/integration/ssl/autosign_spec.rb +130 -0
  1803. data/spec/integration/ssl/certificate_authority_spec.rb +162 -0
  1804. data/spec/integration/ssl/certificate_request_spec.rb +47 -0
  1805. data/spec/integration/ssl/certificate_revocation_list_spec.rb +34 -0
  1806. data/spec/integration/ssl/host_spec.rb +81 -0
  1807. data/spec/integration/test/test_helper_spec.rb +28 -0
  1808. data/spec/integration/transaction/report_spec.rb +40 -0
  1809. data/spec/integration/transaction_spec.rb +448 -0
  1810. data/spec/integration/type/exec_spec.rb +77 -0
  1811. data/spec/integration/type/file_spec.rb +1883 -0
  1812. data/spec/integration/type/nagios_spec.rb +71 -0
  1813. data/spec/integration/type/package_spec.rb +198 -0
  1814. data/spec/integration/type/tidy_spec.rb +46 -0
  1815. data/spec/integration/type/user_spec.rb +57 -0
  1816. data/spec/integration/type_spec.rb +32 -0
  1817. data/spec/integration/util/autoload_spec.rb +102 -0
  1818. data/spec/integration/util/execution_spec.rb +39 -0
  1819. data/spec/integration/util/rdoc/parser_spec.rb +182 -0
  1820. data/spec/integration/util/settings_spec.rb +89 -0
  1821. data/spec/integration/util/windows/principal_spec.rb +201 -0
  1822. data/spec/integration/util/windows/process_spec.rb +65 -0
  1823. data/spec/integration/util/windows/registry_spec.rb +257 -0
  1824. data/spec/integration/util/windows/security_spec.rb +892 -0
  1825. data/spec/integration/util/windows/user_spec.rb +125 -0
  1826. data/spec/integration/util_spec.rb +133 -0
  1827. data/spec/lib/matchers/containment_matchers.rb +52 -0
  1828. data/spec/lib/matchers/include.rb +27 -0
  1829. data/spec/lib/matchers/include_in_order.rb +20 -0
  1830. data/spec/lib/matchers/include_in_order_spec.rb +30 -0
  1831. data/spec/lib/matchers/include_spec.rb +32 -0
  1832. data/spec/lib/matchers/json.rb +137 -0
  1833. data/spec/lib/matchers/match_tokens2.rb +74 -0
  1834. data/spec/lib/matchers/relationship_graph_matchers.rb +48 -0
  1835. data/spec/lib/matchers/resource.rb +74 -0
  1836. data/spec/lib/puppet/face/1.0.0/huzzah.rb +8 -0
  1837. data/spec/lib/puppet/face/basetest.rb +51 -0
  1838. data/spec/lib/puppet/face/huzzah.rb +8 -0
  1839. data/spec/lib/puppet/face/huzzah/obsolete.rb +6 -0
  1840. data/spec/lib/puppet/face/version_matching.rb +12 -0
  1841. data/spec/lib/puppet/indirector/indirector_testing/json.rb +6 -0
  1842. data/spec/lib/puppet/indirector/indirector_testing/memory.rb +7 -0
  1843. data/spec/lib/puppet/indirector/indirector_testing/msgpack.rb +6 -0
  1844. data/spec/lib/puppet/indirector_proxy.rb +34 -0
  1845. data/spec/lib/puppet/indirector_testing.rb +27 -0
  1846. data/spec/lib/puppet_spec/compiler.rb +66 -0
  1847. data/spec/lib/puppet_spec/files.rb +103 -0
  1848. data/spec/lib/puppet_spec/fixtures.rb +28 -0
  1849. data/spec/lib/puppet_spec/handler.rb +53 -0
  1850. data/spec/lib/puppet_spec/language.rb +74 -0
  1851. data/spec/lib/puppet_spec/matchers.rb +161 -0
  1852. data/spec/lib/puppet_spec/module_tool/shared_functions.rb +56 -0
  1853. data/spec/lib/puppet_spec/module_tool/stub_source.rb +136 -0
  1854. data/spec/lib/puppet_spec/modules.rb +37 -0
  1855. data/spec/lib/puppet_spec/network.rb +101 -0
  1856. data/spec/lib/puppet_spec/pops.rb +29 -0
  1857. data/spec/lib/puppet_spec/scope.rb +14 -0
  1858. data/spec/lib/puppet_spec/settings.rb +32 -0
  1859. data/spec/lib/puppet_spec/verbose.rb +9 -0
  1860. data/spec/shared_behaviours/all_parsedfile_providers.rb +21 -0
  1861. data/spec/shared_behaviours/an_indirector_face.rb +6 -0
  1862. data/spec/shared_behaviours/documentation_on_faces.rb +263 -0
  1863. data/spec/shared_behaviours/file_server_terminus.rb +41 -0
  1864. data/spec/shared_behaviours/file_serving.rb +75 -0
  1865. data/spec/shared_behaviours/file_serving_model.rb +72 -0
  1866. data/spec/shared_behaviours/hiera_indirections.rb +99 -0
  1867. data/spec/shared_behaviours/iterative_functions.rb +69 -0
  1868. data/spec/shared_behaviours/memory_terminus.rb +28 -0
  1869. data/spec/shared_behaviours/path_parameters.rb +160 -0
  1870. data/spec/shared_behaviours/store_configs_terminus.rb +21 -0
  1871. data/spec/shared_behaviours/things_that_declare_options.rb +262 -0
  1872. data/spec/shared_contexts/checksum.rb +62 -0
  1873. data/spec/shared_contexts/digests.rb +55 -0
  1874. data/spec/shared_contexts/types_setup.rb +96 -0
  1875. data/spec/spec_helper.rb +209 -0
  1876. data/spec/unit/agent/disabler_spec.rb +64 -0
  1877. data/spec/unit/agent/locker_spec.rb +100 -0
  1878. data/spec/unit/agent_spec.rb +282 -0
  1879. data/spec/unit/application/agent_spec.rb +604 -0
  1880. data/spec/unit/application/apply_spec.rb +490 -0
  1881. data/spec/unit/application/cert_spec.rb +220 -0
  1882. data/spec/unit/application/certificate_spec.rb +22 -0
  1883. data/spec/unit/application/config_spec.rb +9 -0
  1884. data/spec/unit/application/describe_spec.rb +79 -0
  1885. data/spec/unit/application/device_spec.rb +453 -0
  1886. data/spec/unit/application/doc_spec.rb +335 -0
  1887. data/spec/unit/application/face_base_spec.rb +437 -0
  1888. data/spec/unit/application/facts_spec.rb +23 -0
  1889. data/spec/unit/application/filebucket_spec.rb +293 -0
  1890. data/spec/unit/application/indirection_base_spec.rb +48 -0
  1891. data/spec/unit/application/inspect_spec.rb +287 -0
  1892. data/spec/unit/application/lookup_spec.rb +305 -0
  1893. data/spec/unit/application/master_spec.rb +388 -0
  1894. data/spec/unit/application/resource_spec.rb +157 -0
  1895. data/spec/unit/application_spec.rb +641 -0
  1896. data/spec/unit/appmgmt_spec.rb +657 -0
  1897. data/spec/unit/capability_spec.rb +414 -0
  1898. data/spec/unit/configurer/downloader_factory_spec.rb +96 -0
  1899. data/spec/unit/configurer/downloader_spec.rb +228 -0
  1900. data/spec/unit/configurer/fact_handler_spec.rb +96 -0
  1901. data/spec/unit/configurer/plugin_handler_spec.rb +68 -0
  1902. data/spec/unit/configurer_spec.rb +923 -0
  1903. data/spec/unit/confine/exists_spec.rb +80 -0
  1904. data/spec/unit/confine/false_spec.rb +52 -0
  1905. data/spec/unit/confine/feature_spec.rb +57 -0
  1906. data/spec/unit/confine/true_spec.rb +52 -0
  1907. data/spec/unit/confine/variable_spec.rb +106 -0
  1908. data/spec/unit/confine_collection_spec.rb +133 -0
  1909. data/spec/unit/confine_spec.rb +77 -0
  1910. data/spec/unit/confiner_spec.rb +62 -0
  1911. data/spec/unit/context/trusted_information_spec.rb +154 -0
  1912. data/spec/unit/context_spec.rb +136 -0
  1913. data/spec/unit/daemon_spec.rb +261 -0
  1914. data/spec/unit/data_binding_spec.rb +11 -0
  1915. data/spec/unit/data_providers/function_data_provider_spec.rb +105 -0
  1916. data/spec/unit/data_providers/hiera_data_provider_spec.rb +378 -0
  1917. data/spec/unit/data_providers/hiera_interpolation_spec.rb +57 -0
  1918. data/spec/unit/data_providers/sample_data_provider_spec.rb +52 -0
  1919. data/spec/unit/defaults_spec.rb +89 -0
  1920. data/spec/unit/environments_spec.rb +677 -0
  1921. data/spec/unit/external/pson_spec.rb +61 -0
  1922. data/spec/unit/face/catalog_spec.rb +7 -0
  1923. data/spec/unit/face/certificate_spec.rb +223 -0
  1924. data/spec/unit/face/config_spec.rb +142 -0
  1925. data/spec/unit/face/epp_face_spec.rb +303 -0
  1926. data/spec/unit/face/facts_spec.rb +9 -0
  1927. data/spec/unit/face/file_spec.rb +10 -0
  1928. data/spec/unit/face/help_spec.rb +145 -0
  1929. data/spec/unit/face/module/build_spec.rb +69 -0
  1930. data/spec/unit/face/module/install_spec.rb +42 -0
  1931. data/spec/unit/face/module/list_spec.rb +241 -0
  1932. data/spec/unit/face/module/search_spec.rb +201 -0
  1933. data/spec/unit/face/module/uninstall_spec.rb +49 -0
  1934. data/spec/unit/face/module/upgrade_spec.rb +26 -0
  1935. data/spec/unit/face/module_spec.rb +3 -0
  1936. data/spec/unit/face/node_spec.rb +154 -0
  1937. data/spec/unit/face/parser_spec.rb +152 -0
  1938. data/spec/unit/face/plugin_spec.rb +39 -0
  1939. data/spec/unit/face_spec.rb +1 -0
  1940. data/spec/unit/file_bucket/dipper_spec.rb +385 -0
  1941. data/spec/unit/file_bucket/file_spec.rb +60 -0
  1942. data/spec/unit/file_serving/base_spec.rb +168 -0
  1943. data/spec/unit/file_serving/configuration/parser_spec.rb +181 -0
  1944. data/spec/unit/file_serving/configuration_spec.rb +231 -0
  1945. data/spec/unit/file_serving/content_spec.rb +100 -0
  1946. data/spec/unit/file_serving/fileset_spec.rb +353 -0
  1947. data/spec/unit/file_serving/http_metadata_spec.rb +85 -0
  1948. data/spec/unit/file_serving/metadata_spec.rb +526 -0
  1949. data/spec/unit/file_serving/mount/file_spec.rb +189 -0
  1950. data/spec/unit/file_serving/mount/modules_spec.rb +70 -0
  1951. data/spec/unit/file_serving/mount/pluginfacts_spec.rb +73 -0
  1952. data/spec/unit/file_serving/mount/plugins_spec.rb +73 -0
  1953. data/spec/unit/file_serving/mount_spec.rb +31 -0
  1954. data/spec/unit/file_serving/terminus_helper_spec.rb +112 -0
  1955. data/spec/unit/file_serving/terminus_selector_spec.rb +68 -0
  1956. data/spec/unit/file_system/path_pattern_spec.rb +138 -0
  1957. data/spec/unit/file_system/uniquefile_spec.rb +184 -0
  1958. data/spec/unit/file_system_spec.rb +592 -0
  1959. data/spec/unit/forge/errors_spec.rb +80 -0
  1960. data/spec/unit/forge/module_release_spec.rb +218 -0
  1961. data/spec/unit/forge/repository_spec.rb +224 -0
  1962. data/spec/unit/forge_spec.rb +172 -0
  1963. data/spec/unit/functions/assert_type_spec.rb +89 -0
  1964. data/spec/unit/functions/defined_spec.rb +289 -0
  1965. data/spec/unit/functions/each_spec.rb +107 -0
  1966. data/spec/unit/functions/epp_spec.rb +154 -0
  1967. data/spec/unit/functions/filter_spec.rb +145 -0
  1968. data/spec/unit/functions/hiera_spec.rb +125 -0
  1969. data/spec/unit/functions/inline_epp_spec.rb +89 -0
  1970. data/spec/unit/functions/lookup_spec.rb +627 -0
  1971. data/spec/unit/functions/map_spec.rb +163 -0
  1972. data/spec/unit/functions/match_spec.rb +57 -0
  1973. data/spec/unit/functions/reduce_spec.rb +85 -0
  1974. data/spec/unit/functions/regsubst_spec.rb +107 -0
  1975. data/spec/unit/functions/reverse_each_spec.rb +108 -0
  1976. data/spec/unit/functions/scanf_spec.rb +32 -0
  1977. data/spec/unit/functions/slice_spec.rb +136 -0
  1978. data/spec/unit/functions/split_spec.rb +54 -0
  1979. data/spec/unit/functions/step_spec.rb +113 -0
  1980. data/spec/unit/functions/type_spec.rb +35 -0
  1981. data/spec/unit/functions/versioncmp_spec.rb +36 -0
  1982. data/spec/unit/functions/with_spec.rb +31 -0
  1983. data/spec/unit/functions4_spec.rb +860 -0
  1984. data/spec/unit/graph/key_spec.rb +41 -0
  1985. data/spec/unit/graph/rb_tree_map_spec.rb +572 -0
  1986. data/spec/unit/graph/relationship_graph_spec.rb +387 -0
  1987. data/spec/unit/graph/sequential_prioritizer_spec.rb +32 -0
  1988. data/spec/unit/graph/simple_graph_spec.rb +717 -0
  1989. data/spec/unit/graph/title_hash_prioritizer_spec.rb +49 -0
  1990. data/spec/unit/hiera/scope_spec.rb +93 -0
  1991. data/spec/unit/hiera_puppet_spec.rb +118 -0
  1992. data/spec/unit/indirector/catalog/compiler_spec.rb +1004 -0
  1993. data/spec/unit/indirector/catalog/json_spec.rb +12 -0
  1994. data/spec/unit/indirector/catalog/msgpack_spec.rb +12 -0
  1995. data/spec/unit/indirector/catalog/rest_spec.rb +10 -0
  1996. data/spec/unit/indirector/catalog/static_compiler_spec.rb +255 -0
  1997. data/spec/unit/indirector/catalog/store_configs_spec.rb +17 -0
  1998. data/spec/unit/indirector/catalog/yaml_spec.rb +24 -0
  1999. data/spec/unit/indirector/certificate/ca_spec.rb +23 -0
  2000. data/spec/unit/indirector/certificate/disabled_ca_spec.rb +33 -0
  2001. data/spec/unit/indirector/certificate/file_spec.rb +23 -0
  2002. data/spec/unit/indirector/certificate/rest_spec.rb +63 -0
  2003. data/spec/unit/indirector/certificate_request/ca_spec.rb +57 -0
  2004. data/spec/unit/indirector/certificate_request/disabled_ca_spec.rb +33 -0
  2005. data/spec/unit/indirector/certificate_request/file_spec.rb +15 -0
  2006. data/spec/unit/indirector/certificate_request/rest_spec.rb +26 -0
  2007. data/spec/unit/indirector/certificate_revocation_list/ca_spec.rb +16 -0
  2008. data/spec/unit/indirector/certificate_revocation_list/disabled_ca_spec.rb +33 -0
  2009. data/spec/unit/indirector/certificate_revocation_list/file_spec.rb +17 -0
  2010. data/spec/unit/indirector/certificate_revocation_list/rest_spec.rb +26 -0
  2011. data/spec/unit/indirector/certificate_status/file_spec.rb +191 -0
  2012. data/spec/unit/indirector/certificate_status/rest_spec.rb +18 -0
  2013. data/spec/unit/indirector/code_spec.rb +31 -0
  2014. data/spec/unit/indirector/data_binding/hiera_spec.rb +19 -0
  2015. data/spec/unit/indirector/data_binding/none_spec.rb +28 -0
  2016. data/spec/unit/indirector/direct_file_server_spec.rb +90 -0
  2017. data/spec/unit/indirector/envelope_spec.rb +33 -0
  2018. data/spec/unit/indirector/exec_spec.rb +58 -0
  2019. data/spec/unit/indirector/face_spec.rb +75 -0
  2020. data/spec/unit/indirector/facts/facter_spec.rb +168 -0
  2021. data/spec/unit/indirector/facts/network_device_spec.rb +78 -0
  2022. data/spec/unit/indirector/facts/store_configs_spec.rb +17 -0
  2023. data/spec/unit/indirector/facts/yaml_spec.rb +239 -0
  2024. data/spec/unit/indirector/file_bucket_file/file_spec.rb +337 -0
  2025. data/spec/unit/indirector/file_bucket_file/rest_spec.rb +10 -0
  2026. data/spec/unit/indirector/file_bucket_file/selector_spec.rb +29 -0
  2027. data/spec/unit/indirector/file_content/file_server_spec.rb +14 -0
  2028. data/spec/unit/indirector/file_content/file_spec.rb +14 -0
  2029. data/spec/unit/indirector/file_content/rest_spec.rb +14 -0
  2030. data/spec/unit/indirector/file_content/selector_spec.rb +10 -0
  2031. data/spec/unit/indirector/file_metadata/file_server_spec.rb +14 -0
  2032. data/spec/unit/indirector/file_metadata/file_spec.rb +58 -0
  2033. data/spec/unit/indirector/file_metadata/rest_spec.rb +13 -0
  2034. data/spec/unit/indirector/file_metadata/selector_spec.rb +11 -0
  2035. data/spec/unit/indirector/file_server_spec.rb +281 -0
  2036. data/spec/unit/indirector/hiera_spec.rb +17 -0
  2037. data/spec/unit/indirector/indirection_spec.rb +886 -0
  2038. data/spec/unit/indirector/json_spec.rb +192 -0
  2039. data/spec/unit/indirector/key/ca_spec.rb +23 -0
  2040. data/spec/unit/indirector/key/disabled_ca_spec.rb +33 -0
  2041. data/spec/unit/indirector/key/file_spec.rb +97 -0
  2042. data/spec/unit/indirector/ldap_spec.rb +137 -0
  2043. data/spec/unit/indirector/memory_spec.rb +27 -0
  2044. data/spec/unit/indirector/msgpack_spec.rb +191 -0
  2045. data/spec/unit/indirector/node/exec_spec.rb +87 -0
  2046. data/spec/unit/indirector/node/ldap_spec.rb +441 -0
  2047. data/spec/unit/indirector/node/memory_spec.rb +18 -0
  2048. data/spec/unit/indirector/node/msgpack_spec.rb +24 -0
  2049. data/spec/unit/indirector/node/plain_spec.rb +26 -0
  2050. data/spec/unit/indirector/node/rest_spec.rb +12 -0
  2051. data/spec/unit/indirector/node/store_configs_spec.rb +17 -0
  2052. data/spec/unit/indirector/node/yaml_spec.rb +24 -0
  2053. data/spec/unit/indirector/none_spec.rb +33 -0
  2054. data/spec/unit/indirector/plain_spec.rb +27 -0
  2055. data/spec/unit/indirector/report/msgpack_spec.rb +28 -0
  2056. data/spec/unit/indirector/report/processor_spec.rb +100 -0
  2057. data/spec/unit/indirector/report/rest_spec.rb +67 -0
  2058. data/spec/unit/indirector/report/yaml_spec.rb +28 -0
  2059. data/spec/unit/indirector/request_spec.rb +500 -0
  2060. data/spec/unit/indirector/resource/ral_spec.rb +131 -0
  2061. data/spec/unit/indirector/resource/store_configs_spec.rb +21 -0
  2062. data/spec/unit/indirector/resource_type/parser_spec.rb +254 -0
  2063. data/spec/unit/indirector/resource_type/rest_spec.rb +14 -0
  2064. data/spec/unit/indirector/rest_spec.rb +604 -0
  2065. data/spec/unit/indirector/ssl_file_spec.rb +328 -0
  2066. data/spec/unit/indirector/status/local_spec.rb +11 -0
  2067. data/spec/unit/indirector/status/rest_spec.rb +10 -0
  2068. data/spec/unit/indirector/store_configs_spec.rb +8 -0
  2069. data/spec/unit/indirector/terminus_spec.rb +264 -0
  2070. data/spec/unit/indirector/yaml_spec.rb +166 -0
  2071. data/spec/unit/indirector_spec.rb +150 -0
  2072. data/spec/unit/info_service_spec.rb +298 -0
  2073. data/spec/unit/interface/action_builder_spec.rb +217 -0
  2074. data/spec/unit/interface/action_manager_spec.rb +255 -0
  2075. data/spec/unit/interface/action_spec.rb +647 -0
  2076. data/spec/unit/interface/documentation_spec.rb +33 -0
  2077. data/spec/unit/interface/face_collection_spec.rb +212 -0
  2078. data/spec/unit/interface/option_builder_spec.rb +86 -0
  2079. data/spec/unit/interface/option_spec.rb +156 -0
  2080. data/spec/unit/interface_spec.rb +266 -0
  2081. data/spec/unit/man_spec.rb +32 -0
  2082. data/spec/unit/module_spec.rb +761 -0
  2083. data/spec/unit/module_tool/application_spec.rb +25 -0
  2084. data/spec/unit/module_tool/applications/builder_spec.rb +397 -0
  2085. data/spec/unit/module_tool/applications/checksummer_spec.rb +115 -0
  2086. data/spec/unit/module_tool/applications/installer_spec.rb +363 -0
  2087. data/spec/unit/module_tool/applications/searcher_spec.rb +38 -0
  2088. data/spec/unit/module_tool/applications/uninstaller_spec.rb +165 -0
  2089. data/spec/unit/module_tool/applications/unpacker_spec.rb +74 -0
  2090. data/spec/unit/module_tool/applications/upgrader_spec.rb +324 -0
  2091. data/spec/unit/module_tool/install_directory_spec.rb +70 -0
  2092. data/spec/unit/module_tool/installed_modules_spec.rb +49 -0
  2093. data/spec/unit/module_tool/metadata_spec.rb +330 -0
  2094. data/spec/unit/module_tool/tar/gnu_spec.rb +23 -0
  2095. data/spec/unit/module_tool/tar/mini_spec.rb +60 -0
  2096. data/spec/unit/module_tool/tar_spec.rb +31 -0
  2097. data/spec/unit/module_tool_spec.rb +309 -0
  2098. data/spec/unit/network/auth_config_parser_spec.rb +101 -0
  2099. data/spec/unit/network/authconfig_spec.rb +139 -0
  2100. data/spec/unit/network/authorization_spec.rb +62 -0
  2101. data/spec/unit/network/authstore_spec.rb +423 -0
  2102. data/spec/unit/network/format_handler_spec.rb +94 -0
  2103. data/spec/unit/network/format_spec.rb +197 -0
  2104. data/spec/unit/network/format_support_spec.rb +199 -0
  2105. data/spec/unit/network/formats_spec.rb +336 -0
  2106. data/spec/unit/network/http/api/ca/v1_spec.rb +26 -0
  2107. data/spec/unit/network/http/api/indirected_routes_spec.rb +473 -0
  2108. data/spec/unit/network/http/api/master/v3/authorization_spec.rb +59 -0
  2109. data/spec/unit/network/http/api/master/v3/environments_spec.rb +63 -0
  2110. data/spec/unit/network/http/api/master/v3_spec.rb +39 -0
  2111. data/spec/unit/network/http/api_spec.rb +127 -0
  2112. data/spec/unit/network/http/compression_spec.rb +190 -0
  2113. data/spec/unit/network/http/connection_spec.rb +299 -0
  2114. data/spec/unit/network/http/error_spec.rb +30 -0
  2115. data/spec/unit/network/http/factory_spec.rb +94 -0
  2116. data/spec/unit/network/http/handler_spec.rb +174 -0
  2117. data/spec/unit/network/http/nocache_pool_spec.rb +43 -0
  2118. data/spec/unit/network/http/pool_spec.rb +299 -0
  2119. data/spec/unit/network/http/rack/rest_spec.rb +318 -0
  2120. data/spec/unit/network/http/rack_spec.rb +43 -0
  2121. data/spec/unit/network/http/route_spec.rb +91 -0
  2122. data/spec/unit/network/http/session_spec.rb +43 -0
  2123. data/spec/unit/network/http/site_spec.rb +90 -0
  2124. data/spec/unit/network/http/webrick/rest_spec.rb +231 -0
  2125. data/spec/unit/network/http/webrick_spec.rb +279 -0
  2126. data/spec/unit/network/http_pool_spec.rb +98 -0
  2127. data/spec/unit/network/http_spec.rb +10 -0
  2128. data/spec/unit/network/resolver_spec.rb +207 -0
  2129. data/spec/unit/network/rights_spec.rb +440 -0
  2130. data/spec/unit/network/server_spec.rb +95 -0
  2131. data/spec/unit/node/environment_spec.rb +485 -0
  2132. data/spec/unit/node/facts_spec.rb +213 -0
  2133. data/spec/unit/node_spec.rb +362 -0
  2134. data/spec/unit/other/selinux_spec.rb +99 -0
  2135. data/spec/unit/parameter/boolean_spec.rb +36 -0
  2136. data/spec/unit/parameter/package_options_spec.rb +44 -0
  2137. data/spec/unit/parameter/path_spec.rb +24 -0
  2138. data/spec/unit/parameter/value_collection_spec.rb +161 -0
  2139. data/spec/unit/parameter/value_spec.rb +83 -0
  2140. data/spec/unit/parameter_spec.rb +193 -0
  2141. data/spec/unit/parser/ast/block_expression_spec.rb +68 -0
  2142. data/spec/unit/parser/ast/leaf_spec.rb +138 -0
  2143. data/spec/unit/parser/compiler_spec.rb +993 -0
  2144. data/spec/unit/parser/files_spec.rb +102 -0
  2145. data/spec/unit/parser/functions/contain_spec.rb +233 -0
  2146. data/spec/unit/parser/functions/create_resources_spec.rb +213 -0
  2147. data/spec/unit/parser/functions/defined_spec.rb +120 -0
  2148. data/spec/unit/parser/functions/digest_spec.rb +31 -0
  2149. data/spec/unit/parser/functions/fail_spec.rb +28 -0
  2150. data/spec/unit/parser/functions/file_spec.rb +104 -0
  2151. data/spec/unit/parser/functions/fqdn_rand_spec.rb +50 -0
  2152. data/spec/unit/parser/functions/generate_spec.rb +127 -0
  2153. data/spec/unit/parser/functions/hiera_array_spec.rb +12 -0
  2154. data/spec/unit/parser/functions/hiera_hash_spec.rb +12 -0
  2155. data/spec/unit/parser/functions/hiera_include_spec.rb +12 -0
  2156. data/spec/unit/parser/functions/hiera_spec.rb +12 -0
  2157. data/spec/unit/parser/functions/include_spec.rb +55 -0
  2158. data/spec/unit/parser/functions/inline_template_spec.rb +34 -0
  2159. data/spec/unit/parser/functions/lookup_spec.rb +14 -0
  2160. data/spec/unit/parser/functions/realize_spec.rb +61 -0
  2161. data/spec/unit/parser/functions/regsubst_spec.rb +24 -0
  2162. data/spec/unit/parser/functions/require_spec.rb +68 -0
  2163. data/spec/unit/parser/functions/scanf_spec.rb +30 -0
  2164. data/spec/unit/parser/functions/shared.rb +82 -0
  2165. data/spec/unit/parser/functions/shellquote_spec.rb +67 -0
  2166. data/spec/unit/parser/functions/split_spec.rb +18 -0
  2167. data/spec/unit/parser/functions/sprintf_spec.rb +47 -0
  2168. data/spec/unit/parser/functions/tag_spec.rb +28 -0
  2169. data/spec/unit/parser/functions/template_spec.rb +89 -0
  2170. data/spec/unit/parser/functions/versioncmp_spec.rb +33 -0
  2171. data/spec/unit/parser/functions_spec.rb +132 -0
  2172. data/spec/unit/parser/relationship_spec.rb +75 -0
  2173. data/spec/unit/parser/resource/param_spec.rb +32 -0
  2174. data/spec/unit/parser/resource_spec.rb +564 -0
  2175. data/spec/unit/parser/scope_spec.rb +689 -0
  2176. data/spec/unit/parser/templatewrapper_spec.rb +101 -0
  2177. data/spec/unit/parser/type_loader_spec.rb +204 -0
  2178. data/spec/unit/pops/adaptable_spec.rb +141 -0
  2179. data/spec/unit/pops/benchmark_spec.rb +142 -0
  2180. data/spec/unit/pops/binder/binder_spec.rb +43 -0
  2181. data/spec/unit/pops/binder/bindings_checker_spec.rb +155 -0
  2182. data/spec/unit/pops/binder/bindings_composer_spec.rb +64 -0
  2183. data/spec/unit/pops/binder/bindings_validator_factory_spec.rb +18 -0
  2184. data/spec/unit/pops/binder/config/binder_config_spec.rb +42 -0
  2185. data/spec/unit/pops/binder/injector_spec.rb +768 -0
  2186. data/spec/unit/pops/containment_spec.rb +26 -0
  2187. data/spec/unit/pops/evaluator/access_ops_spec.rb +462 -0
  2188. data/spec/unit/pops/evaluator/arithmetic_ops_spec.rb +77 -0
  2189. data/spec/unit/pops/evaluator/basic_expressions_spec.rb +102 -0
  2190. data/spec/unit/pops/evaluator/collections_ops_spec.rb +109 -0
  2191. data/spec/unit/pops/evaluator/comparison_ops_spec.rb +268 -0
  2192. data/spec/unit/pops/evaluator/conditionals_spec.rb +190 -0
  2193. data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +1431 -0
  2194. data/spec/unit/pops/evaluator/evaluator_rspec_helper.rb +71 -0
  2195. data/spec/unit/pops/evaluator/json_strict_literal_evaluator_spec.rb +63 -0
  2196. data/spec/unit/pops/evaluator/literal_evaluator_spec.rb +43 -0
  2197. data/spec/unit/pops/evaluator/logical_ops_spec.rb +90 -0
  2198. data/spec/unit/pops/evaluator/runtime3_converter_spec.rb +25 -0
  2199. data/spec/unit/pops/evaluator/string_interpolation_spec.rb +44 -0
  2200. data/spec/unit/pops/evaluator/variables_spec.rb +89 -0
  2201. data/spec/unit/pops/factory_rspec_helper.rb +69 -0
  2202. data/spec/unit/pops/factory_spec.rb +306 -0
  2203. data/spec/unit/pops/issues_spec.rb +196 -0
  2204. data/spec/unit/pops/label_provider_spec.rb +46 -0
  2205. data/spec/unit/pops/loaders/dependency_loader_spec.rb +119 -0
  2206. data/spec/unit/pops/loaders/loader_paths_spec.rb +43 -0
  2207. data/spec/unit/pops/loaders/loaders_spec.rb +329 -0
  2208. data/spec/unit/pops/loaders/module_loaders_spec.rb +95 -0
  2209. data/spec/unit/pops/loaders/static_loader_spec.rb +52 -0
  2210. data/spec/unit/pops/migration_spec.rb +53 -0
  2211. data/spec/unit/pops/model/model_spec.rb +37 -0
  2212. data/spec/unit/pops/parser/epp_parser_spec.rb +115 -0
  2213. data/spec/unit/pops/parser/evaluating_parser_spec.rb +89 -0
  2214. data/spec/unit/pops/parser/lexer2_spec.rb +814 -0
  2215. data/spec/unit/pops/parser/parse_application_spec.rb +40 -0
  2216. data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +292 -0
  2217. data/spec/unit/pops/parser/parse_calls_spec.rb +127 -0
  2218. data/spec/unit/pops/parser/parse_capabilities_spec.rb +47 -0
  2219. data/spec/unit/pops/parser/parse_conditionals_spec.rb +173 -0
  2220. data/spec/unit/pops/parser/parse_containers_spec.rb +261 -0
  2221. data/spec/unit/pops/parser/parse_heredoc_spec.rb +164 -0
  2222. data/spec/unit/pops/parser/parse_resource_spec.rb +329 -0
  2223. data/spec/unit/pops/parser/parse_site_spec.rb +38 -0
  2224. data/spec/unit/pops/parser/parser_rspec_helper.rb +21 -0
  2225. data/spec/unit/pops/parser/parser_spec.rb +75 -0
  2226. data/spec/unit/pops/parser/parsing_typed_parameters_spec.rb +65 -0
  2227. data/spec/unit/pops/parser/rgen_sanitycheck_spec.rb +23 -0
  2228. data/spec/unit/pops/parser/source_pos_adapter_spec.rb +26 -0
  2229. data/spec/unit/pops/types/class_loader_spec.rb +10 -0
  2230. data/spec/unit/pops/types/enumeration_spec.rb +50 -0
  2231. data/spec/unit/pops/types/iterable_spec.rb +262 -0
  2232. data/spec/unit/pops/types/recursion_guard_spec.rb +91 -0
  2233. data/spec/unit/pops/types/type_acceptor_spec.rb +105 -0
  2234. data/spec/unit/pops/types/type_asserter_spec.rb +43 -0
  2235. data/spec/unit/pops/types/type_calculator_spec.rb +2060 -0
  2236. data/spec/unit/pops/types/type_factory_spec.rb +281 -0
  2237. data/spec/unit/pops/types/type_formatter_spec.rb +280 -0
  2238. data/spec/unit/pops/types/type_mismatch_describer_spec.rb +152 -0
  2239. data/spec/unit/pops/types/type_parser_spec.rb +288 -0
  2240. data/spec/unit/pops/types/types_spec.rb +241 -0
  2241. data/spec/unit/pops/utils_spec.rb +70 -0
  2242. data/spec/unit/pops/validation_spec.rb +66 -0
  2243. data/spec/unit/pops/validator/validator_spec.rb +418 -0
  2244. data/spec/unit/pops/visitor_spec.rb +94 -0
  2245. data/spec/unit/property/boolean_spec.rb +24 -0
  2246. data/spec/unit/property/ensure_spec.rb +12 -0
  2247. data/spec/unit/property/keyvalue_spec.rb +170 -0
  2248. data/spec/unit/property/list_spec.rb +173 -0
  2249. data/spec/unit/property/ordered_list_spec.rb +63 -0
  2250. data/spec/unit/property_spec.rb +517 -0
  2251. data/spec/unit/provider/README.markdown +4 -0
  2252. data/spec/unit/provider/aixobject_spec.rb +101 -0
  2253. data/spec/unit/provider/augeas/augeas_spec.rb +1025 -0
  2254. data/spec/unit/provider/cisco_spec.rb +15 -0
  2255. data/spec/unit/provider/command_spec.rb +62 -0
  2256. data/spec/unit/provider/cron/crontab_spec.rb +207 -0
  2257. data/spec/unit/provider/cron/parsed_spec.rb +358 -0
  2258. data/spec/unit/provider/exec/posix_spec.rb +209 -0
  2259. data/spec/unit/provider/exec/shell_spec.rb +53 -0
  2260. data/spec/unit/provider/exec/windows_spec.rb +107 -0
  2261. data/spec/unit/provider/exec_spec.rb +35 -0
  2262. data/spec/unit/provider/file/posix_spec.rb +232 -0
  2263. data/spec/unit/provider/file/windows_spec.rb +154 -0
  2264. data/spec/unit/provider/group/directoryservice_spec.rb +33 -0
  2265. data/spec/unit/provider/group/groupadd_spec.rb +76 -0
  2266. data/spec/unit/provider/group/ldap_spec.rb +101 -0
  2267. data/spec/unit/provider/group/pw_spec.rb +81 -0
  2268. data/spec/unit/provider/group/windows_adsi_spec.rb +279 -0
  2269. data/spec/unit/provider/host/parsed_spec.rb +233 -0
  2270. data/spec/unit/provider/interface/cisco_spec.rb +57 -0
  2271. data/spec/unit/provider/ldap_spec.rb +244 -0
  2272. data/spec/unit/provider/macauthorization_spec.rb +155 -0
  2273. data/spec/unit/provider/mcx/mcxcontent_spec.rb +192 -0
  2274. data/spec/unit/provider/mount/parsed_spec.rb +317 -0
  2275. data/spec/unit/provider/mount_spec.rb +165 -0
  2276. data/spec/unit/provider/naginator_spec.rb +79 -0
  2277. data/spec/unit/provider/nameservice/directoryservice_spec.rb +162 -0
  2278. data/spec/unit/provider/nameservice_spec.rb +304 -0
  2279. data/spec/unit/provider/network_device_spec.rb +152 -0
  2280. data/spec/unit/provider/package/aix_spec.rb +107 -0
  2281. data/spec/unit/provider/package/appdmg_spec.rb +42 -0
  2282. data/spec/unit/provider/package/apt_spec.rb +165 -0
  2283. data/spec/unit/provider/package/aptitude_spec.rb +45 -0
  2284. data/spec/unit/provider/package/aptrpm_spec.rb +47 -0
  2285. data/spec/unit/provider/package/base_spec.rb +18 -0
  2286. data/spec/unit/provider/package/dnf_spec.rb +108 -0
  2287. data/spec/unit/provider/package/dpkg_spec.rb +281 -0
  2288. data/spec/unit/provider/package/freebsd_spec.rb +54 -0
  2289. data/spec/unit/provider/package/gem_spec.rb +326 -0
  2290. data/spec/unit/provider/package/hpux_spec.rb +51 -0
  2291. data/spec/unit/provider/package/macports_spec.rb +140 -0
  2292. data/spec/unit/provider/package/nim_spec.rb +250 -0
  2293. data/spec/unit/provider/package/openbsd_spec.rb +404 -0
  2294. data/spec/unit/provider/package/opkg_spec.rb +183 -0
  2295. data/spec/unit/provider/package/pacman_spec.rb +468 -0
  2296. data/spec/unit/provider/package/pip3_spec.rb +275 -0
  2297. data/spec/unit/provider/package/pip_spec.rb +309 -0
  2298. data/spec/unit/provider/package/pkg_spec.rb +333 -0
  2299. data/spec/unit/provider/package/pkgdmg_spec.rb +171 -0
  2300. data/spec/unit/provider/package/pkgin_spec.rb +188 -0
  2301. data/spec/unit/provider/package/pkgng_spec.rb +174 -0
  2302. data/spec/unit/provider/package/pkgutil_spec.rb +235 -0
  2303. data/spec/unit/provider/package/portage_spec.rb +69 -0
  2304. data/spec/unit/provider/package/puppet_gem_spec.rb +67 -0
  2305. data/spec/unit/provider/package/rpm_spec.rb +484 -0
  2306. data/spec/unit/provider/package/sun_spec.rb +114 -0
  2307. data/spec/unit/provider/package/up2date_spec.rb +24 -0
  2308. data/spec/unit/provider/package/urpmi_spec.rb +80 -0
  2309. data/spec/unit/provider/package/windows/exe_package_spec.rb +100 -0
  2310. data/spec/unit/provider/package/windows/msi_package_spec.rb +114 -0
  2311. data/spec/unit/provider/package/windows/package_spec.rb +182 -0
  2312. data/spec/unit/provider/package/windows_spec.rb +251 -0
  2313. data/spec/unit/provider/package/yum_spec.rb +547 -0
  2314. data/spec/unit/provider/package/zypper_spec.rb +231 -0
  2315. data/spec/unit/provider/parsedfile_spec.rb +228 -0
  2316. data/spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb +1859 -0
  2317. data/spec/unit/provider/selboolean_spec.rb +36 -0
  2318. data/spec/unit/provider/selmodule-example.pp +0 -0
  2319. data/spec/unit/provider/selmodule_spec.rb +73 -0
  2320. data/spec/unit/provider/service/base_spec.rb +88 -0
  2321. data/spec/unit/provider/service/bsd_spec.rb +130 -0
  2322. data/spec/unit/provider/service/daemontools_spec.rb +171 -0
  2323. data/spec/unit/provider/service/debian_spec.rb +153 -0
  2324. data/spec/unit/provider/service/freebsd_spec.rb +92 -0
  2325. data/spec/unit/provider/service/gentoo_spec.rb +243 -0
  2326. data/spec/unit/provider/service/init_spec.rb +251 -0
  2327. data/spec/unit/provider/service/launchd_spec.rb +314 -0
  2328. data/spec/unit/provider/service/openbsd_spec.rb +204 -0
  2329. data/spec/unit/provider/service/openrc_spec.rb +226 -0
  2330. data/spec/unit/provider/service/openwrt_spec.rb +109 -0
  2331. data/spec/unit/provider/service/rcng_spec.rb +41 -0
  2332. data/spec/unit/provider/service/redhat_spec.rb +171 -0
  2333. data/spec/unit/provider/service/runit_spec.rb +145 -0
  2334. data/spec/unit/provider/service/smf_spec.rb +178 -0
  2335. data/spec/unit/provider/service/src_spec.rb +189 -0
  2336. data/spec/unit/provider/service/systemd_spec.rb +332 -0
  2337. data/spec/unit/provider/service/upstart_spec.rb +648 -0
  2338. data/spec/unit/provider/service/windows_spec.rb +231 -0
  2339. data/spec/unit/provider/ssh_authorized_key/parsed_spec.rb +276 -0
  2340. data/spec/unit/provider/sshkey/parsed_spec.rb +95 -0
  2341. data/spec/unit/provider/user/aix_spec.rb +162 -0
  2342. data/spec/unit/provider/user/directoryservice_spec.rb +1051 -0
  2343. data/spec/unit/provider/user/hpux_spec.rb +73 -0
  2344. data/spec/unit/provider/user/ldap_spec.rb +289 -0
  2345. data/spec/unit/provider/user/openbsd_spec.rb +77 -0
  2346. data/spec/unit/provider/user/pw_spec.rb +214 -0
  2347. data/spec/unit/provider/user/user_role_add_spec.rb +357 -0
  2348. data/spec/unit/provider/user/useradd_spec.rb +446 -0
  2349. data/spec/unit/provider/user/windows_adsi_spec.rb +303 -0
  2350. data/spec/unit/provider/vlan/cisco_spec.rb +55 -0
  2351. data/spec/unit/provider/yumrepo/inifile_spec.rb +326 -0
  2352. data/spec/unit/provider/zfs/zfs_spec.rb +106 -0
  2353. data/spec/unit/provider/zone/solaris_spec.rb +247 -0
  2354. data/spec/unit/provider/zpool/zpool_spec.rb +251 -0
  2355. data/spec/unit/provider_spec.rb +722 -0
  2356. data/spec/unit/puppet_spec.rb +48 -0
  2357. data/spec/unit/relationship_spec.rb +224 -0
  2358. data/spec/unit/reports/http_spec.rb +100 -0
  2359. data/spec/unit/reports/store_spec.rb +60 -0
  2360. data/spec/unit/reports_spec.rb +70 -0
  2361. data/spec/unit/resource/capability_finder_spec.rb +69 -0
  2362. data/spec/unit/resource/catalog_spec.rb +926 -0
  2363. data/spec/unit/resource/status_spec.rb +194 -0
  2364. data/spec/unit/resource/type_collection_helper_spec.rb +24 -0
  2365. data/spec/unit/resource/type_collection_spec.rb +334 -0
  2366. data/spec/unit/resource/type_spec.rb +914 -0
  2367. data/spec/unit/resource_spec.rb +1069 -0
  2368. data/spec/unit/scheduler/job_spec.rb +79 -0
  2369. data/spec/unit/scheduler/scheduler_spec.rb +116 -0
  2370. data/spec/unit/scheduler/splay_job_spec.rb +35 -0
  2371. data/spec/unit/semver_spec.rb +305 -0
  2372. data/spec/unit/settings/array_setting_spec.rb +39 -0
  2373. data/spec/unit/settings/autosign_setting_spec.rb +104 -0
  2374. data/spec/unit/settings/config_file_spec.rb +149 -0
  2375. data/spec/unit/settings/directory_setting_spec.rb +32 -0
  2376. data/spec/unit/settings/duration_setting_spec.rb +49 -0
  2377. data/spec/unit/settings/enum_setting_spec.rb +27 -0
  2378. data/spec/unit/settings/environment_conf_spec.rb +135 -0
  2379. data/spec/unit/settings/file_setting_spec.rb +329 -0
  2380. data/spec/unit/settings/ini_file_spec.rb +184 -0
  2381. data/spec/unit/settings/path_setting_spec.rb +30 -0
  2382. data/spec/unit/settings/priority_setting_spec.rb +66 -0
  2383. data/spec/unit/settings/string_setting_spec.rb +75 -0
  2384. data/spec/unit/settings/terminus_setting_spec.rb +28 -0
  2385. data/spec/unit/settings/value_translator_spec.rb +77 -0
  2386. data/spec/unit/settings_spec.rb +1854 -0
  2387. data/spec/unit/ssl/base_spec.rb +85 -0
  2388. data/spec/unit/ssl/certificate_authority/autosign_command_spec.rb +30 -0
  2389. data/spec/unit/ssl/certificate_authority/interface_spec.rb +394 -0
  2390. data/spec/unit/ssl/certificate_authority_spec.rb +1132 -0
  2391. data/spec/unit/ssl/certificate_factory_spec.rb +181 -0
  2392. data/spec/unit/ssl/certificate_request_attributes_spec.rb +61 -0
  2393. data/spec/unit/ssl/certificate_request_spec.rb +381 -0
  2394. data/spec/unit/ssl/certificate_revocation_list_spec.rb +196 -0
  2395. data/spec/unit/ssl/certificate_spec.rb +190 -0
  2396. data/spec/unit/ssl/configuration_spec.rb +132 -0
  2397. data/spec/unit/ssl/digest_spec.rb +35 -0
  2398. data/spec/unit/ssl/host_spec.rb +940 -0
  2399. data/spec/unit/ssl/inventory_spec.rb +127 -0
  2400. data/spec/unit/ssl/key_spec.rb +191 -0
  2401. data/spec/unit/ssl/oids_spec.rb +69 -0
  2402. data/spec/unit/ssl/validator_spec.rb +418 -0
  2403. data/spec/unit/status_spec.rb +45 -0
  2404. data/spec/unit/transaction/additional_resource_generator_spec.rb +484 -0
  2405. data/spec/unit/transaction/event_manager_spec.rb +340 -0
  2406. data/spec/unit/transaction/event_spec.rb +192 -0
  2407. data/spec/unit/transaction/report_spec.rb +533 -0
  2408. data/spec/unit/transaction/resource_harness_spec.rb +495 -0
  2409. data/spec/unit/transaction_spec.rb +748 -0
  2410. data/spec/unit/type/README.markdown +4 -0
  2411. data/spec/unit/type/augeas_spec.rb +119 -0
  2412. data/spec/unit/type/component_spec.rb +53 -0
  2413. data/spec/unit/type/computer_spec.rb +80 -0
  2414. data/spec/unit/type/cron_spec.rb +543 -0
  2415. data/spec/unit/type/exec_spec.rb +780 -0
  2416. data/spec/unit/type/file/checksum_spec.rb +85 -0
  2417. data/spec/unit/type/file/checksum_value_spec.rb +286 -0
  2418. data/spec/unit/type/file/content_spec.rb +394 -0
  2419. data/spec/unit/type/file/ctime_spec.rb +34 -0
  2420. data/spec/unit/type/file/ensure_spec.rb +123 -0
  2421. data/spec/unit/type/file/group_spec.rb +60 -0
  2422. data/spec/unit/type/file/mode_spec.rb +222 -0
  2423. data/spec/unit/type/file/mtime_spec.rb +34 -0
  2424. data/spec/unit/type/file/owner_spec.rb +58 -0
  2425. data/spec/unit/type/file/selinux_spec.rb +89 -0
  2426. data/spec/unit/type/file/source_spec.rb +658 -0
  2427. data/spec/unit/type/file/type_spec.rb +19 -0
  2428. data/spec/unit/type/file_spec.rb +1604 -0
  2429. data/spec/unit/type/filebucket_spec.rb +103 -0
  2430. data/spec/unit/type/group_spec.rb +84 -0
  2431. data/spec/unit/type/host_spec.rb +681 -0
  2432. data/spec/unit/type/interface_spec.rb +129 -0
  2433. data/spec/unit/type/k5login_spec.rb +115 -0
  2434. data/spec/unit/type/macauthorization_spec.rb +113 -0
  2435. data/spec/unit/type/mailalias_spec.rb +49 -0
  2436. data/spec/unit/type/maillist_spec.rb +41 -0
  2437. data/spec/unit/type/mcx_spec.rb +79 -0
  2438. data/spec/unit/type/mount_spec.rb +600 -0
  2439. data/spec/unit/type/nagios_spec.rb +293 -0
  2440. data/spec/unit/type/noop_metaparam_spec.rb +38 -0
  2441. data/spec/unit/type/package/package_settings_spec.rb +135 -0
  2442. data/spec/unit/type/package_spec.rb +374 -0
  2443. data/spec/unit/type/resources_spec.rb +318 -0
  2444. data/spec/unit/type/schedule_spec.rb +607 -0
  2445. data/spec/unit/type/scheduled_task_spec.rb +103 -0
  2446. data/spec/unit/type/selboolean_spec.rb +44 -0
  2447. data/spec/unit/type/selmodule_spec.rb +17 -0
  2448. data/spec/unit/type/service_spec.rb +266 -0
  2449. data/spec/unit/type/ssh_authorized_key_spec.rb +258 -0
  2450. data/spec/unit/type/sshkey_spec.rb +77 -0
  2451. data/spec/unit/type/stage_spec.rb +8 -0
  2452. data/spec/unit/type/tidy_spec.rb +452 -0
  2453. data/spec/unit/type/user_spec.rb +526 -0
  2454. data/spec/unit/type/vlan_spec.rb +44 -0
  2455. data/spec/unit/type/whit_spec.rb +10 -0
  2456. data/spec/unit/type/yumrepo_spec.rb +402 -0
  2457. data/spec/unit/type/zfs_spec.rb +46 -0
  2458. data/spec/unit/type/zone_spec.rb +172 -0
  2459. data/spec/unit/type/zpool_spec.rb +109 -0
  2460. data/spec/unit/type_spec.rb +1187 -0
  2461. data/spec/unit/util/autoload_spec.rb +281 -0
  2462. data/spec/unit/util/backups_spec.rb +134 -0
  2463. data/spec/unit/util/checksums_spec.rb +208 -0
  2464. data/spec/unit/util/colors_spec.rb +45 -0
  2465. data/spec/unit/util/command_line_spec.rb +164 -0
  2466. data/spec/unit/util/command_line_utils/puppet_option_parser_spec.rb +129 -0
  2467. data/spec/unit/util/constant_inflector_spec.rb +56 -0
  2468. data/spec/unit/util/diff_spec.rb +39 -0
  2469. data/spec/unit/util/docs_spec.rb +100 -0
  2470. data/spec/unit/util/errors_spec.rb +37 -0
  2471. data/spec/unit/util/execution_spec.rb +675 -0
  2472. data/spec/unit/util/execution_stub_spec.rb +39 -0
  2473. data/spec/unit/util/feature_spec.rb +102 -0
  2474. data/spec/unit/util/filetype_spec.rb +211 -0
  2475. data/spec/unit/util/http_proxy_spec.rb +212 -0
  2476. data/spec/unit/util/inifile_spec.rb +492 -0
  2477. data/spec/unit/util/json_lockfile_spec.rb +50 -0
  2478. data/spec/unit/util/ldap/connection_spec.rb +161 -0
  2479. data/spec/unit/util/ldap/generator_spec.rb +50 -0
  2480. data/spec/unit/util/ldap/manager_spec.rb +641 -0
  2481. data/spec/unit/util/lockfile_spec.rb +118 -0
  2482. data/spec/unit/util/log/destinations_spec.rb +228 -0
  2483. data/spec/unit/util/log_spec.rb +501 -0
  2484. data/spec/unit/util/logging_spec.rb +391 -0
  2485. data/spec/unit/util/metric_spec.rb +83 -0
  2486. data/spec/unit/util/monkey_patches_spec.rb +219 -0
  2487. data/spec/unit/util/multi_match_spec.rb +39 -0
  2488. data/spec/unit/util/nagios_maker_spec.rb +122 -0
  2489. data/spec/unit/util/network_device/cisco/device_spec.rb +482 -0
  2490. data/spec/unit/util/network_device/cisco/facts_spec.rb +64 -0
  2491. data/spec/unit/util/network_device/cisco/interface_spec.rb +88 -0
  2492. data/spec/unit/util/network_device/config_spec.rb +92 -0
  2493. data/spec/unit/util/network_device/ipcalc_spec.rb +62 -0
  2494. data/spec/unit/util/network_device/transport/base_spec.rb +41 -0
  2495. data/spec/unit/util/network_device/transport/ssh_spec.rb +218 -0
  2496. data/spec/unit/util/network_device/transport/telnet_spec.rb +86 -0
  2497. data/spec/unit/util/network_device_spec.rb +50 -0
  2498. data/spec/unit/util/package_spec.rb +20 -0
  2499. data/spec/unit/util/pidlock_spec.rb +218 -0
  2500. data/spec/unit/util/plist_spec.rb +110 -0
  2501. data/spec/unit/util/posix_spec.rb +251 -0
  2502. data/spec/unit/util/profiler/aggregate_spec.rb +55 -0
  2503. data/spec/unit/util/profiler/around_profiler_spec.rb +61 -0
  2504. data/spec/unit/util/profiler/logging_spec.rb +70 -0
  2505. data/spec/unit/util/profiler/object_counts_spec.rb +12 -0
  2506. data/spec/unit/util/profiler/wall_clock_spec.rb +13 -0
  2507. data/spec/unit/util/profiler_spec.rb +47 -0
  2508. data/spec/unit/util/rdoc_spec.rb +56 -0
  2509. data/spec/unit/util/reference_spec.rb +39 -0
  2510. data/spec/unit/util/resource_template_spec.rb +57 -0
  2511. data/spec/unit/util/retry_action_spec.rb +85 -0
  2512. data/spec/unit/util/rubygems_spec.rb +82 -0
  2513. data/spec/unit/util/run_mode_spec.rb +311 -0
  2514. data/spec/unit/util/selinux_spec.rb +311 -0
  2515. data/spec/unit/util/splayer_spec.rb +45 -0
  2516. data/spec/unit/util/ssl_spec.rb +92 -0
  2517. data/spec/unit/util/storage_spec.rb +214 -0
  2518. data/spec/unit/util/suidmanager_spec.rb +286 -0
  2519. data/spec/unit/util/symbolic_file_mode_spec.rb +181 -0
  2520. data/spec/unit/util/tag_set_spec.rb +46 -0
  2521. data/spec/unit/util/tagging_spec.rb +169 -0
  2522. data/spec/unit/util/terminal_spec.rb +42 -0
  2523. data/spec/unit/util/user_attr_spec.rb +46 -0
  2524. data/spec/unit/util/warnings_spec.rb +46 -0
  2525. data/spec/unit/util/watched_file_spec.rb +52 -0
  2526. data/spec/unit/util/watcher/periodic_watcher_spec.rb +52 -0
  2527. data/spec/unit/util/watcher_spec.rb +56 -0
  2528. data/spec/unit/util/windows/access_control_entry_spec.rb +67 -0
  2529. data/spec/unit/util/windows/access_control_list_spec.rb +133 -0
  2530. data/spec/unit/util/windows/adsi_spec.rb +510 -0
  2531. data/spec/unit/util/windows/api_types_spec.rb +70 -0
  2532. data/spec/unit/util/windows/root_certs_spec.rb +17 -0
  2533. data/spec/unit/util/windows/security_descriptor_spec.rb +117 -0
  2534. data/spec/unit/util/windows/sid_spec.rb +203 -0
  2535. data/spec/unit/util/windows/string_spec.rb +58 -0
  2536. data/spec/unit/util/yaml_spec.rb +55 -0
  2537. data/spec/unit/util_spec.rb +674 -0
  2538. data/spec/unit/version_spec.rb +42 -0
  2539. data/spec/watchr.rb +138 -0
  2540. data/tasks/benchmark.rake +139 -0
  2541. data/tasks/cfpropertylist.rake +15 -0
  2542. data/tasks/ci.rake +29 -0
  2543. data/tasks/manpages.rake +75 -0
  2544. data/tasks/memwalk.rake +195 -0
  2545. data/tasks/parallel.rake +405 -0
  2546. data/tasks/parser.rake +14 -0
  2547. data/tasks/yard.rake +59 -0
  2548. metadata +3842 -0
@@ -0,0 +1,89 @@
1
+ # The version method and constant are isolated in puppet/version.rb so that a
2
+ # simple `require 'puppet/version'` allows a rubygems gemspec or bundler
3
+ # Gemfile to get the Puppet version of the gem install.
4
+ #
5
+ # The version is programatically settable because we want to allow the
6
+ # Raketasks and such to set the version based on the output of `git describe`
7
+
8
+
9
+ module Puppet
10
+ PUPPETVERSION = '4.4.0'
11
+
12
+ ##
13
+ # version is a public API method intended to always provide a fast and
14
+ # lightweight way to determine the version of Puppet.
15
+ #
16
+ # The intent is that software external to Puppet be able to determine the
17
+ # Puppet version with no side-effects. The expected use is:
18
+ #
19
+ # require 'puppet/version'
20
+ # version = Puppet.version
21
+ #
22
+ # This function has the following ordering precedence. This precedence list
23
+ # is designed to facilitate automated packaging tasks by simply writing to
24
+ # the VERSION file in the same directory as this source file.
25
+ #
26
+ # 1. If a version has been explicitly assigned using the Puppet.version=
27
+ # method, return that version.
28
+ # 2. If there is a VERSION file, read the contents, trim any
29
+ # trailing whitespace, and return that version string.
30
+ # 3. Return the value of the Puppet::PUPPETVERSION constant hard-coded into
31
+ # the source code.
32
+ #
33
+ # If there is no VERSION file, the method must return the version string of
34
+ # the nearest parent version that is an officially released version. That is
35
+ # to say, if a branch named 3.1.x contains 25 patches on top of the most
36
+ # recent official release of 3.1.1, then the version method must return the
37
+ # string "3.1.1" if no "VERSION" file is present.
38
+ #
39
+ # By design the version identifier is _not_ intended to vary during the life
40
+ # a process. There is no guarantee provided that writing to the VERSION file
41
+ # while a Puppet process is running will cause the version string to be
42
+ # updated. On the contrary, the contents of the VERSION are cached to reduce
43
+ # filesystem accesses.
44
+ #
45
+ # The VERSION file is intended to be used by package maintainers who may be
46
+ # applying patches or otherwise changing the software version in a manner
47
+ # that warrants a different software version identifier. The VERSION file is
48
+ # intended to be managed and owned by the release process and packaging
49
+ # related tasks, and as such should not reside in version control. The
50
+ # PUPPETVERSION constant is intended to be version controlled in history.
51
+ #
52
+ # Ideally, this behavior will allow package maintainers to precisely specify
53
+ # the version of the software they're packaging as in the following example:
54
+ #
55
+ # $ git describe --match "3.0.*" > lib/puppet/VERSION
56
+ # $ ruby -r puppet -e 'puts Puppet.version'
57
+ # 3.0.1-260-g9ca4e54
58
+ #
59
+ # @api public
60
+ #
61
+ # @return [String] containing the puppet version, e.g. "3.0.1"
62
+ def self.version
63
+ version_file = File.join(File.dirname(__FILE__), 'VERSION')
64
+ return @puppet_version if @puppet_version
65
+ if version = read_version_file(version_file)
66
+ @puppet_version = version
67
+ end
68
+ @puppet_version ||= PUPPETVERSION
69
+ end
70
+
71
+ def self.version=(version)
72
+ @puppet_version = version
73
+ end
74
+
75
+ ##
76
+ # read_version_file reads the content of the "VERSION" file that lives in the
77
+ # same directory as this source code file.
78
+ #
79
+ # @api private
80
+ #
81
+ # @return [String] for example: "1.6.14-6-gea42046" or nil if the VERSION
82
+ # file does not exist.
83
+ def self.read_version_file(path)
84
+ if File.exist?(path)
85
+ File.read(path).chomp
86
+ end
87
+ end
88
+ private_class_method :read_version_file
89
+ end
@@ -0,0 +1,8 @@
1
+ # The Puppet Extensions Module.
2
+ #
3
+ # Submodules of this module should be named after the publisher (e.g. 'user' part of a Puppet Module name).
4
+ #
5
+ # @api public
6
+ #
7
+ module PuppetX
8
+ end
@@ -0,0 +1,139 @@
1
+ require 'puppet/util/monkey_patches'
2
+
3
+ # We need to subclass Numeric to force range comparisons not to try to iterate over SemVer
4
+ # and instead use numeric comparisons (eg >, <, >=, <=)
5
+ class SemVer < Numeric
6
+ include Comparable
7
+
8
+ VERSION = /^v?(\d+)\.(\d+)\.(\d+)(-[0-9A-Za-z-]*|)$/
9
+ SIMPLE_RANGE = /^v?(\d+|[xX])(?:\.(\d+|[xX])(?:\.(\d+|[xX]))?)?$/
10
+
11
+ def self.valid?(ver)
12
+ VERSION =~ ver
13
+ end
14
+
15
+ def self.find_matching(pattern, versions)
16
+ versions.select { |v| v.matched_by?("#{pattern}") }.sort.last
17
+ end
18
+
19
+ def self.pre(vstring)
20
+ vstring =~ /-/ ? vstring : vstring + '-'
21
+ end
22
+
23
+ def self.[](range)
24
+ range.gsub(/([><=])\s+/, '\1').split(/\b\s+(?!-)/).map do |r|
25
+ case r
26
+ when SemVer::VERSION
27
+ SemVer.new(pre(r)) .. SemVer.new(r)
28
+ when SemVer::SIMPLE_RANGE
29
+ r += ".0" unless SemVer.valid?(r.gsub(/x/i, '0'))
30
+ SemVer.new(r.gsub(/x/i, '0'))...SemVer.new(r.gsub(/(\d+)\.x/i) { "#{$1.to_i + 1}.0" } + '-')
31
+ when /\s+-\s+/
32
+ a, b = r.split(/\s+-\s+/)
33
+ SemVer.new(pre(a)) .. SemVer.new(b)
34
+ when /^~/
35
+ ver = r.sub(/~/, '').split('.').map(&:to_i)
36
+ start = (ver + [0] * (3 - ver.length)).join('.')
37
+
38
+ ver.pop unless ver.length == 1
39
+ ver[-1] = ver.last + 1
40
+
41
+ finish = (ver + [0] * (3 - ver.length)).join('.')
42
+ SemVer.new(pre(start)) ... SemVer.new(pre(finish))
43
+ when /^>=/
44
+ ver = r.sub(/^>=/, '')
45
+ SemVer.new(pre(ver)) .. SemVer::MAX
46
+ when /^<=/
47
+ ver = r.sub(/^<=/, '')
48
+ SemVer::MIN .. SemVer.new(ver)
49
+ when /^>/
50
+ if r =~ /-/
51
+ ver = [r[1..-1]]
52
+ else
53
+ ver = r.sub(/^>/, '').split('.').map(&:to_i)
54
+ ver[2] = ver.last + 1
55
+ end
56
+ SemVer.new(ver.join('.') + '-') .. SemVer::MAX
57
+ when /^</
58
+ ver = r.sub(/^</, '')
59
+ SemVer::MIN ... SemVer.new(pre(ver))
60
+ else
61
+ (1..1)
62
+ end
63
+ end.inject { |a,e| a & e }
64
+ end
65
+
66
+ attr_reader :major, :minor, :tiny, :special
67
+
68
+ def initialize(ver)
69
+ unless SemVer.valid?(ver)
70
+ raise ArgumentError.new("Invalid version string '#{ver}'!")
71
+ end
72
+
73
+ @major, @minor, @tiny, @special = VERSION.match(ver).captures.map do |x|
74
+ # Because Kernel#Integer tries to interpret hex and octal strings, which
75
+ # we specifically do not want, and which cannot be overridden in 1.8.7.
76
+ Float(x).to_i rescue x
77
+ end
78
+ end
79
+
80
+ def <=>(other)
81
+ # Note that prior to ruby 2.3.0, if a <=> method threw an exception, ruby
82
+ # would silently rescue the exception and return nil from <=> (which causes
83
+ # the derived == comparison to return false). Starting in ruby 2.3.0, this
84
+ # behavior changed and the exception is actually thrown. Some comments at:
85
+ # https://bugs.ruby-lang.org/issues/7688
86
+ #
87
+ # SemVer#initialize above throws an ArgumentError given an invalid
88
+ # version string. So, to preserve the ability to use the == operator
89
+ # between a SemVer object and an invalid version string, we take care here
90
+ # to do the valid? check before constructing the SemVer object (i.e.
91
+ # so that a == comparison doesn't throw an exception, but just returns
92
+ # false.)
93
+ unless other.is_a? SemVer
94
+ return nil unless SemVer.valid?(other)
95
+ other = SemVer.new("#{other}")
96
+ end
97
+
98
+ return self.major <=> other.major unless self.major == other.major
99
+ return self.minor <=> other.minor unless self.minor == other.minor
100
+ return self.tiny <=> other.tiny unless self.tiny == other.tiny
101
+
102
+ return 0 if self.special == other.special
103
+ return 1 if self.special == ''
104
+ return -1 if other.special == ''
105
+
106
+ return self.special <=> other.special
107
+ end
108
+
109
+ def matched_by?(pattern)
110
+ # For the time being, this is restricted to exact version matches and
111
+ # simple range patterns. In the future, we should implement some or all of
112
+ # the comparison operators here:
113
+ # https://github.com/isaacs/node-semver/blob/d474801/semver.js#L340
114
+
115
+ case pattern
116
+ when SIMPLE_RANGE
117
+ pattern = SIMPLE_RANGE.match(pattern).captures
118
+ pattern[1] = @minor unless pattern[1] && pattern[1] !~ /x/i
119
+ pattern[2] = @tiny unless pattern[2] && pattern[2] !~ /x/i
120
+ [@major, @minor, @tiny] == pattern.map { |x| x.to_i }
121
+ when VERSION
122
+ self == SemVer.new(pattern)
123
+ else
124
+ false
125
+ end
126
+ end
127
+
128
+ def inspect
129
+ @vstring || "v#{@major}.#{@minor}.#{@tiny}#{@special}"
130
+ end
131
+ alias :to_s :inspect
132
+
133
+ MIN = SemVer.new('0.0.0-')
134
+ MIN.instance_variable_set(:@vstring, 'vMIN')
135
+
136
+ MAX = SemVer.new('8.0.0')
137
+ MAX.instance_variable_set(:@major, Float::INFINITY) # => Infinity
138
+ MAX.instance_variable_set(:@vstring, 'vMAX')
139
+ end
@@ -0,0 +1,1760 @@
1
+ .\" generated with Ronn/v0.7.3
2
+ .\" https://github.com/rtomayko/ronn/tree/0.7.3
3
+ .
4
+ .TH "PUPPETCONF" "5" "May 2015" "Puppet Labs, LLC" "Puppet manual"
5
+ \fBThis page is autogenerated; any changes will get overwritten\fR \fI(last generated on 2015\-05\-18 10:15:47 \-0700)\fR
6
+ .
7
+ .SH "Configuration Settings"
8
+ .
9
+ .IP "\(bu" 4
10
+ Each of these settings can be specified in \fBpuppet\.conf\fR or on the command line\.
11
+ .
12
+ .IP "\(bu" 4
13
+ When using boolean settings on the command line, use \fB\-\-setting\fR and \fB\-\-no\-setting\fR instead of \fB\-\-setting (true|false)\fR\. (Using \fB\-\-setting false\fR results in "Error: Could not parse application options: needless argument"\.)
14
+ .
15
+ .IP "\(bu" 4
16
+ Settings can be interpolated as \fB$variables\fR in other settings; \fB$environment\fR is special, in that puppet master will interpolate each agent node\'s environment instead of its own\.
17
+ .
18
+ .IP "\(bu" 4
19
+ Multiple values should be specified as comma\-separated lists; multiple directories should be separated with the system path separator (usually a colon)\.
20
+ .
21
+ .IP "\(bu" 4
22
+ Settings that represent time intervals should be specified in duration format: an integer immediately followed by one of the units \'y\' (years of 365 days), \'d\' (days), \'h\' (hours), \'m\' (minutes), or \'s\' (seconds)\. The unit cannot be combined with other units, and defaults to seconds when omitted\. Examples are \'3600\' which is equivalent to \'1h\' (one hour), and \'1825d\' which is equivalent to \'5y\' (5 years)\.
23
+ .
24
+ .IP "\(bu" 4
25
+ Settings that take a single file or directory can optionally set the owner, group, and mode for their value: \fBrundir = $vardir/run { owner = puppet, group = puppet, mode = 644 }\fR
26
+ .
27
+ .IP "\(bu" 4
28
+ The Puppet executables will ignore any setting that isn\'t relevant to their function\.
29
+ .
30
+ .IP "" 0
31
+ .
32
+ .P
33
+ See the configuration guide \fIhttps://docs\.puppetlabs\.com/guides/configuring\.html\fR for more details\.
34
+ .
35
+ .SS "agent_catalog_run_lockfile"
36
+ A lock file to indicate that a puppet agent catalog run is currently in progress\. The file contains the pid of the process that holds the lock on the catalog run\.
37
+ .
38
+ .IP "\(bu" 4
39
+ \fIDefault\fR: $statedir/agent_catalog_run\.lock
40
+ .
41
+ .IP "" 0
42
+ .
43
+ .SS "agent_disabled_lockfile"
44
+ A lock file to indicate that puppet agent runs have been administratively disabled\. File contains a JSON object with state information\.
45
+ .
46
+ .IP "\(bu" 4
47
+ \fIDefault\fR: $statedir/agent_disabled\.lock
48
+ .
49
+ .IP "" 0
50
+ .
51
+ .SS "allow_duplicate_certs"
52
+ Whether to allow a new certificate request to overwrite an existing certificate\.
53
+ .
54
+ .IP "\(bu" 4
55
+ \fIDefault\fR: false
56
+ .
57
+ .IP "" 0
58
+ .
59
+ .SS "always_cache_features"
60
+ Affects how we cache attempts to load Puppet \'features\'\. If false, then calls to \fBPuppet\.features\.<feature>?\fR will always attempt to load the feature (which can be an expensive operation) unless it has already been loaded successfully\. This makes it possible for a single agent run to, e\.g\., install a package that provides the underlying capabilities for a feature, and then later load that feature during the same run (even if the feature had been tested earlier and had not been available)\.
61
+ .
62
+ .P
63
+ If this setting is set to true, then features will only be checked once, and if they are not available, the negative result is cached and returned for all subsequent attempts to load the feature\. This behavior is almost always appropriate for the server, and can result in a significant performance improvement for features that are checked frequently\.
64
+ .
65
+ .IP "\(bu" 4
66
+ \fIDefault\fR: false
67
+ .
68
+ .IP "" 0
69
+ .
70
+ .SS "archive_file_server"
71
+ During an inspect run, the file bucket server to archive files to if archive_files is set\.
72
+ .
73
+ .IP "\(bu" 4
74
+ \fIDefault\fR: $server
75
+ .
76
+ .IP "" 0
77
+ .
78
+ .SS "archive_files"
79
+ During an inspect run, whether to archive files whose contents are audited to a file bucket\.
80
+ .
81
+ .IP "\(bu" 4
82
+ \fIDefault\fR: false
83
+ .
84
+ .IP "" 0
85
+ .
86
+ .SS "autoflush"
87
+ Whether log files should always flush to disk\.
88
+ .
89
+ .IP "\(bu" 4
90
+ \fIDefault\fR: true
91
+ .
92
+ .IP "" 0
93
+ .
94
+ .SS "autosign"
95
+ Whether (and how) to autosign certificate requests\. This setting is only relevant on a puppet master acting as a certificate authority (CA)\.
96
+ .
97
+ .P
98
+ Valid values are true (autosigns all certificate requests; not recommended), false (disables autosigning certificates), or the absolute path to a file\.
99
+ .
100
+ .P
101
+ The file specified in this setting may be either a \fBconfiguration file\fR or a \fBcustom policy executable\.\fR Puppet will automatically determine what it is: If the Puppet user (see the \fBuser\fR setting) can execute the file, it will be treated as a policy executable; otherwise, it will be treated as a config file\.
102
+ .
103
+ .P
104
+ If a custom policy executable is configured, the CA puppet master will run it every time it receives a CSR\. The executable will be passed the subject CN of the request \fIas a command line argument,\fR and the contents of the CSR in PEM format \fIon stdin\.\fR It should exit with a status of 0 if the cert should be autosigned and non\-zero if the cert should not be autosigned\.
105
+ .
106
+ .P
107
+ If a certificate request is not autosigned, it will persist for review\. An admin user can use the \fBpuppet cert sign\fR command to manually sign it, or can delete the request\.
108
+ .
109
+ .P
110
+ For info on autosign configuration files, see the guide to Puppet\'s config files \fIhttps://docs\.puppetlabs\.com/guides/configuring\.html\fR\.
111
+ .
112
+ .IP "\(bu" 4
113
+ \fIDefault\fR: $confdir/autosign\.conf
114
+ .
115
+ .IP "" 0
116
+ .
117
+ .SS "basemodulepath"
118
+ The search path for \fBglobal\fR modules\. Should be specified as a list of directories separated by the system path separator character\. (The POSIX path separator is \':\', and the Windows path separator is \';\'\.)
119
+ .
120
+ .P
121
+ These are the modules that will be used by \fIall\fR environments\. Note that the \fBmodules\fR directory of the active environment will have priority over any global directories\. For more info, see https://docs\.puppetlabs\.com/puppet/latest/reference/environments\.html
122
+ .
123
+ .IP "\(bu" 4
124
+ \fIDefault\fR: $codedir/modules:/opt/puppetlabs/puppet/modules
125
+ .
126
+ .IP "" 0
127
+ .
128
+ .SS "bindaddress"
129
+ The address a listening server should bind to\.
130
+ .
131
+ .IP "\(bu" 4
132
+ \fIDefault\fR: 0\.0\.0\.0
133
+ .
134
+ .IP "" 0
135
+ .
136
+ .SS "binder_config"
137
+ The binder configuration file\. Puppet reads this file on each request to configure the bindings system\. If set to nil (the default), a $confdir/binder_config\.yaml is optionally loaded\. If it does not exists, a default configuration is used\. If the setting :binding_config is specified, it must reference a valid and existing yaml file\.
138
+ .
139
+ .TP
140
+ \fIDefault\fR:
141
+
142
+ .
143
+ .SS "bucketdir"
144
+ Where FileBucket files are stored\.
145
+ .
146
+ .IP "\(bu" 4
147
+ \fIDefault\fR: $vardir/bucket
148
+ .
149
+ .IP "" 0
150
+ .
151
+ .SS "ca"
152
+ Whether the master should function as a certificate authority\.
153
+ .
154
+ .IP "\(bu" 4
155
+ \fIDefault\fR: true
156
+ .
157
+ .IP "" 0
158
+ .
159
+ .SS "ca_name"
160
+ The name to use the Certificate Authority certificate\.
161
+ .
162
+ .IP "\(bu" 4
163
+ \fIDefault\fR: Puppet CA: $certname
164
+ .
165
+ .IP "" 0
166
+ .
167
+ .SS "ca_port"
168
+ The port to use for the certificate authority\.
169
+ .
170
+ .IP "\(bu" 4
171
+ \fIDefault\fR: $masterport
172
+ .
173
+ .IP "" 0
174
+ .
175
+ .SS "ca_server"
176
+ The server to use for certificate authority requests\. It\'s a separate server because it cannot and does not need to horizontally scale\.
177
+ .
178
+ .IP "\(bu" 4
179
+ \fIDefault\fR: $server
180
+ .
181
+ .IP "" 0
182
+ .
183
+ .SS "ca_ttl"
184
+ The default TTL for new certificates\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
185
+ .
186
+ .IP "\(bu" 4
187
+ \fIDefault\fR: 5y
188
+ .
189
+ .IP "" 0
190
+ .
191
+ .SS "cacert"
192
+ The CA certificate\.
193
+ .
194
+ .IP "\(bu" 4
195
+ \fIDefault\fR: $cadir/ca_crt\.pem
196
+ .
197
+ .IP "" 0
198
+ .
199
+ .SS "cacrl"
200
+ The certificate revocation list (CRL) for the CA\. Will be used if present but otherwise ignored\.
201
+ .
202
+ .IP "\(bu" 4
203
+ \fIDefault\fR: $cadir/ca_crl\.pem
204
+ .
205
+ .IP "" 0
206
+ .
207
+ .SS "cadir"
208
+ The root directory for the certificate authority\.
209
+ .
210
+ .IP "\(bu" 4
211
+ \fIDefault\fR: $ssldir/ca
212
+ .
213
+ .IP "" 0
214
+ .
215
+ .SS "cakey"
216
+ The CA private key\.
217
+ .
218
+ .IP "\(bu" 4
219
+ \fIDefault\fR: $cadir/ca_key\.pem
220
+ .
221
+ .IP "" 0
222
+ .
223
+ .SS "capass"
224
+ Where the CA stores the password for the private key\.
225
+ .
226
+ .IP "\(bu" 4
227
+ \fIDefault\fR: $caprivatedir/ca\.pass
228
+ .
229
+ .IP "" 0
230
+ .
231
+ .SS "caprivatedir"
232
+ Where the CA stores private certificate information\.
233
+ .
234
+ .IP "\(bu" 4
235
+ \fIDefault\fR: $cadir/private
236
+ .
237
+ .IP "" 0
238
+ .
239
+ .SS "capub"
240
+ The CA public key\.
241
+ .
242
+ .IP "\(bu" 4
243
+ \fIDefault\fR: $cadir/ca_pub\.pem
244
+ .
245
+ .IP "" 0
246
+ .
247
+ .SS "catalog_cache_terminus"
248
+ How to store cached catalogs\. Valid values are \'json\', \'msgpack\' and \'yaml\'\. The agent application defaults to \'json\'\.
249
+ .
250
+ .TP
251
+ \fIDefault\fR:
252
+
253
+ .
254
+ .SS "catalog_terminus"
255
+ Where to get node catalogs\. This is useful to change if, for instance, you\'d like to pre\-compile catalogs and store them in memcached or some other easily\-accessed store\.
256
+ .
257
+ .IP "\(bu" 4
258
+ \fIDefault\fR: compiler
259
+ .
260
+ .IP "" 0
261
+ .
262
+ .SS "cert_inventory"
263
+ The inventory file\. This is a text file to which the CA writes a complete listing of all certificates\.
264
+ .
265
+ .IP "\(bu" 4
266
+ \fIDefault\fR: $cadir/inventory\.txt
267
+ .
268
+ .IP "" 0
269
+ .
270
+ .SS "certdir"
271
+ The certificate directory\.
272
+ .
273
+ .IP "\(bu" 4
274
+ \fIDefault\fR: $ssldir/certs
275
+ .
276
+ .IP "" 0
277
+ .
278
+ .SS "certificate_revocation"
279
+ Whether certificate revocation should be supported by downloading a Certificate Revocation List (CRL) to all clients\. If enabled, CA chaining will almost definitely not work\.
280
+ .
281
+ .IP "\(bu" 4
282
+ \fIDefault\fR: true
283
+ .
284
+ .IP "" 0
285
+ .
286
+ .SS "certname"
287
+ The name to use when handling certificates\. When a node requests a certificate from the CA puppet master, it uses the value of the \fBcertname\fR setting as its requested Subject CN\.
288
+ .
289
+ .P
290
+ This is the name used when managing a node\'s permissions in auth\.conf \fIhttps://docs\.puppetlabs\.com/puppet/latest/reference/config_file_auth\.html\fR\. In most cases, it is also used as the node\'s name when matching node definitions \fIhttps://docs\.puppetlabs\.com/puppet/latest/reference/lang_node_definitions\.html\fR and requesting data from an ENC\. (This can be changed with the \fBnode_name_value\fR and \fBnode_name_fact\fR settings, although you should only do so if you have a compelling reason\.)
291
+ .
292
+ .P
293
+ A node\'s certname is available in Puppet manifests as \fB$trusted[\'certname\']\fR\. (See Facts and Built\-In Variables \fIhttps://docs\.puppetlabs\.com/puppet/latest/reference/lang_facts_and_builtin_vars\.html\fR for more details\.)
294
+ .
295
+ .IP "\(bu" 4
296
+ For best compatibility, you should limit the value of \fBcertname\fR to only use letters, numbers, periods, underscores, and dashes\. (That is, it should match \fB/A[a\-z0\-9\._\-]+Z/\fR\.)
297
+ .
298
+ .IP "\(bu" 4
299
+ The special value \fBca\fR is reserved, and can\'t be used as the certname for a normal node\.
300
+ .
301
+ .IP "" 0
302
+ .
303
+ .P
304
+ Defaults to the node\'s fully qualified domain name\.
305
+ .
306
+ .IP "\(bu" 4
307
+ \fIDefault\fR: rll\.corp\.puppetlabs\.net
308
+ .
309
+ .IP "" 0
310
+ .
311
+ .SS "cfacter"
312
+ Whether or not to use the native facter (cfacter) implementation instead of the Ruby one (facter)\. Defaults to false\.
313
+ .
314
+ .IP "\(bu" 4
315
+ \fIDefault\fR: false
316
+ .
317
+ .IP "" 0
318
+ .
319
+ .SS "classfile"
320
+ The file in which puppet agent stores a list of the classes associated with the retrieved configuration\. Can be loaded in the separate \fBpuppet\fR executable using the \fB\-\-loadclasses\fR option\.
321
+ .
322
+ .IP "\(bu" 4
323
+ \fIDefault\fR: $statedir/classes\.txt
324
+ .
325
+ .IP "" 0
326
+ .
327
+ .SS "client_datadir"
328
+ The directory in which serialized data is stored on the client\.
329
+ .
330
+ .IP "\(bu" 4
331
+ \fIDefault\fR: $vardir/client_data
332
+ .
333
+ .IP "" 0
334
+ .
335
+ .SS "clientbucketdir"
336
+ Where FileBucket files are stored locally\.
337
+ .
338
+ .IP "\(bu" 4
339
+ \fIDefault\fR: $vardir/clientbucket
340
+ .
341
+ .IP "" 0
342
+ .
343
+ .SS "clientyamldir"
344
+ The directory in which client\-side YAML data is stored\.
345
+ .
346
+ .IP "\(bu" 4
347
+ \fIDefault\fR: $vardir/client_yaml
348
+ .
349
+ .IP "" 0
350
+ .
351
+ .SS "code"
352
+ Code to parse directly\. This is essentially only used by \fBpuppet\fR, and should only be set if you\'re writing your own Puppet executable\.
353
+ .
354
+ .SS "codedir"
355
+ The main Puppet code directory\. The default for this setting is calculated based on the user\. If the process is running as root or the user that Puppet is supposed to run as, it defaults to a system directory, but if it\'s running as any other user, it defaults to being in the user\'s home directory\.
356
+ .
357
+ .TP
358
+ \fIDefault\fR:
359
+
360
+ .
361
+ .SS "color"
362
+ Whether to use colors when logging to the console\. Valid values are \fBansi\fR (equivalent to \fBtrue\fR), \fBhtml\fR, and \fBfalse\fR, which produces no color\. Defaults to false on Windows, as its console does not support ansi colors\.
363
+ .
364
+ .IP "\(bu" 4
365
+ \fIDefault\fR: ansi
366
+ .
367
+ .IP "" 0
368
+ .
369
+ .SS "confdir"
370
+ The main Puppet configuration directory\. The default for this setting is calculated based on the user\. If the process is running as root or the user that Puppet is supposed to run as, it defaults to a system directory, but if it\'s running as any other user, it defaults to being in the user\'s home directory\.
371
+ .
372
+ .IP "\(bu" 4
373
+ \fIDefault\fR: /etc/puppetlabs/puppet
374
+ .
375
+ .IP "" 0
376
+ .
377
+ .SS "config"
378
+ The configuration file for the current puppet application\.
379
+ .
380
+ .IP "\(bu" 4
381
+ \fIDefault\fR: $confdir/${config_file_name}
382
+ .
383
+ .IP "" 0
384
+ .
385
+ .SS "config_file_name"
386
+ The name of the puppet config file\.
387
+ .
388
+ .IP "\(bu" 4
389
+ \fIDefault\fR: puppet\.conf
390
+ .
391
+ .IP "" 0
392
+ .
393
+ .SS "config_version"
394
+ How to determine the configuration version\. By default, it will be the time that the configuration is parsed, but you can provide a shell script to override how the version is determined\. The output of this script will be added to every log message in the reports, allowing you to correlate changes on your hosts to the source version on the server\.
395
+ .
396
+ .P
397
+ Setting a global value for config_version in puppet\.conf is not allowed (but it can be overridden from the commandline)\. Please set a per\-environment value in environment\.conf instead\. For more info, see https://docs\.puppetlabs\.com/puppet/latest/reference/environments\.html
398
+ .
399
+ .SS "configprint"
400
+ Print the value of a specific configuration setting\. If the name of a setting is provided for this, then the value is printed and puppet exits\. Comma\-separate multiple values\. For a list of all values, specify \'all\'\.
401
+ .
402
+ .SS "configtimeout"
403
+ How long the client should wait for the configuration to be retrieved before considering it a failure\. This setting is deprecated and has been replaced by http_connect_timeout and http_read_timeout\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
404
+ .
405
+ .IP "\(bu" 4
406
+ \fIDefault\fR: 2m
407
+ .
408
+ .IP "" 0
409
+ .
410
+ .SS "csr_attributes"
411
+ An optional file containing custom attributes to add to certificate signing requests (CSRs)\. You should ensure that this file does not exist on your CA puppet master; if it does, unwanted certificate extensions may leak into certificates created with the \fBpuppet cert generate\fR command\.
412
+ .
413
+ .P
414
+ If present, this file must be a YAML hash containing a \fBcustom_attributes\fR key and/or an \fBextension_requests\fR key\. The value of each key must be a hash, where each key is a valid OID and each value is an object that can be cast to a string\.
415
+ .
416
+ .P
417
+ Custom attributes can be used by the CA when deciding whether to sign the certificate, but are then discarded\. Attribute OIDs can be any OID value except the standard CSR attributes (i\.e\. attributes described in RFC 2985 section 5\.4)\. This is useful for embedding a pre\-shared key for autosigning policy executables (see the \fBautosign\fR setting), often by using the \fB1\.2\.840\.113549\.1\.9\.7\fR ("challenge password") OID\.
418
+ .
419
+ .P
420
+ Extension requests will be permanently embedded in the final certificate\. Extension OIDs must be in the "ppRegCertExt" (\fB1\.3\.6\.1\.4\.1\.34380\.1\.1\fR) or "ppPrivCertExt" (\fB1\.3\.6\.1\.4\.1\.34380\.1\.2\fR) OID arcs\. The ppRegCertExt arc is reserved for four of the most common pieces of data to embed: \fBpp_uuid\fR (\fB\.1\fR), \fBpp_instance_id\fR (\fB\.2\fR), \fBpp_image_name\fR (\fB\.3\fR), and \fBpp_preshared_key\fR (\fB\.4\fR) \-\-\- in the YAML file, these can be referred to by their short descriptive names instead of their full OID\. The ppPrivCertExt arc is unregulated, and can be used for site\-specific extensions\.
421
+ .
422
+ .IP "\(bu" 4
423
+ \fIDefault\fR: $confdir/csr_attributes\.yaml
424
+ .
425
+ .IP "" 0
426
+ .
427
+ .SS "csrdir"
428
+ Where the CA stores certificate requests
429
+ .
430
+ .IP "\(bu" 4
431
+ \fIDefault\fR: $cadir/requests
432
+ .
433
+ .IP "" 0
434
+ .
435
+ .SS "daemonize"
436
+ Whether to send the process into the background\. This defaults to true on POSIX systems, and to false on Windows (where Puppet currently cannot daemonize)\.
437
+ .
438
+ .IP "\(bu" 4
439
+ \fIDefault\fR: true
440
+ .
441
+ .IP "" 0
442
+ .
443
+ .SS "data_binding_terminus"
444
+ Where to retrive information about data\.
445
+ .
446
+ .IP "\(bu" 4
447
+ \fIDefault\fR: hiera
448
+ .
449
+ .IP "" 0
450
+ .
451
+ .SS "default_file_terminus"
452
+ The default source for files if no server is given in a uri, e\.g\. puppet:///file\. The default of \fBrest\fR causes the file to be retrieved using the \fBserver\fR setting\. When running \fBapply\fR the default is \fBfile_server\fR, causing requests to be filled locally\.
453
+ .
454
+ .IP "\(bu" 4
455
+ \fIDefault\fR: rest
456
+ .
457
+ .IP "" 0
458
+ .
459
+ .SS "default_manifest"
460
+ The default main manifest for directory environments\. Any environment that doesn\'t set the \fBmanifest\fR setting in its \fBenvironment\.conf\fR file will use this manifest\.
461
+ .
462
+ .P
463
+ This setting\'s value can be an absolute or relative path\. An absolute path will make all environments default to the same main manifest; a relative path will allow each environment to use its own manifest, and Puppet will resolve the path relative to each environment\'s main directory\.
464
+ .
465
+ .P
466
+ In either case, the path can point to a single file or to a directory of manifests to be evaluated in alphabetical order\.
467
+ .
468
+ .IP "\(bu" 4
469
+ \fIDefault\fR: \./manifests
470
+ .
471
+ .IP "" 0
472
+ .
473
+ .SS "default_schedules"
474
+ Boolean; whether to generate the default schedule resources\. Setting this to false is useful for keeping external report processors clean of skipped schedule resources\.
475
+ .
476
+ .IP "\(bu" 4
477
+ \fIDefault\fR: true
478
+ .
479
+ .IP "" 0
480
+ .
481
+ .SS "deviceconfig"
482
+ Path to the device config file for puppet device\.
483
+ .
484
+ .IP "\(bu" 4
485
+ \fIDefault\fR: $confdir/device\.conf
486
+ .
487
+ .IP "" 0
488
+ .
489
+ .SS "devicedir"
490
+ The root directory of devices\' $vardir\.
491
+ .
492
+ .IP "\(bu" 4
493
+ \fIDefault\fR: $vardir/devices
494
+ .
495
+ .IP "" 0
496
+ .
497
+ .SS "diff"
498
+ Which diff command to use when printing differences between files\. This setting has no default value on Windows, as standard \fBdiff\fR is not available, but Puppet can use many third\-party diff tools\.
499
+ .
500
+ .IP "\(bu" 4
501
+ \fIDefault\fR: diff
502
+ .
503
+ .IP "" 0
504
+ .
505
+ .SS "diff_args"
506
+ Which arguments to pass to the diff command when printing differences between files\. The command to use can be chosen with the \fBdiff\fR setting\.
507
+ .
508
+ .IP "\(bu" 4
509
+ \fIDefault\fR: \-u
510
+ .
511
+ .IP "" 0
512
+ .
513
+ .SS "digest_algorithm"
514
+ Which digest algorithm to use for file resources and the filebucket\. Valid values are md5, sha256\. Default is md5\.
515
+ .
516
+ .IP "\(bu" 4
517
+ \fIDefault\fR: md5
518
+ .
519
+ .IP "" 0
520
+ .
521
+ .SS "disable_per_environment_manifest"
522
+ Whether to disallow an environment\-specific main manifest\. When set to \fBtrue\fR, Puppet will use the manifest specified in the \fBdefault_manifest\fR setting for all environments\. If an environment specifies a different main manifest in its \fBenvironment\.conf\fR file, catalog requests for that environment will fail with an error\.
523
+ .
524
+ .P
525
+ This setting requires \fBdefault_manifest\fR to be set to an absolute path\.
526
+ .
527
+ .IP "\(bu" 4
528
+ \fIDefault\fR: false
529
+ .
530
+ .IP "" 0
531
+ .
532
+ .SS "disable_warnings"
533
+ A comma\-separated list of warning types to suppress\. If large numbers of warnings are making Puppet\'s logs too large or difficult to use, you can temporarily silence them with this setting\.
534
+ .
535
+ .P
536
+ If you are preparing to upgrade Puppet to a new major version, you should re\-enable all warnings for a while\.
537
+ .
538
+ .P
539
+ Valid values for this setting are:
540
+ .
541
+ .IP "\(bu" 4
542
+ \fBdeprecations\fR \-\-\- disables deprecation warnings\.
543
+ .
544
+ .IP "\(bu" 4
545
+ \fIDefault\fR: []
546
+ .
547
+ .IP "" 0
548
+ .
549
+ .SS "dns_alt_names"
550
+ The comma\-separated list of alternative DNS names to use for the local host\.
551
+ .
552
+ .P
553
+ When the node generates a CSR for itself, these are added to the request as the desired \fBsubjectAltName\fR in the certificate: additional DNS labels that the certificate is also valid answering as\.
554
+ .
555
+ .P
556
+ This is generally required if you use a non\-hostname \fBcertname\fR, or if you want to use \fBpuppet kick\fR or \fBpuppet resource \-H\fR and the primary certname does not match the DNS name you use to communicate with the host\.
557
+ .
558
+ .P
559
+ This is unnecessary for agents, unless you intend to use them as a server for \fBpuppet kick\fR or remote \fBpuppet resource\fR management\.
560
+ .
561
+ .P
562
+ It is rarely necessary for servers; it is usually helpful only if you need to have a pool of multiple load balanced masters, or for the same master to respond on two physically separate networks under different names\.
563
+ .
564
+ .SS "document_all"
565
+ Whether to document all resources when using \fBpuppet doc\fR to generate manifest documentation\.
566
+ .
567
+ .IP "\(bu" 4
568
+ \fIDefault\fR: false
569
+ .
570
+ .IP "" 0
571
+ .
572
+ .SS "environment"
573
+ The environment Puppet is running in\. For clients (e\.g\., \fBpuppet agent\fR) this determines the environment itself, which is used to find modules and much more\. For servers (i\.e\., \fBpuppet master\fR) this provides the default environment for nodes we know nothing about\.
574
+ .
575
+ .IP "\(bu" 4
576
+ \fIDefault\fR: production
577
+ .
578
+ .IP "" 0
579
+ .
580
+ .SS "environment_data_provider"
581
+ The name of a registered environment data provider\. The two built in and registered providers are \'none\' (no environment specific data), and \'function\' (environment specific data obtained by calling the function \'environment::data()\')\. Other environment data providers may be registered in modules on the module path\. For such custom data providers see the respective module documentation\.
582
+ .
583
+ .IP "\(bu" 4
584
+ \fIDefault\fR: none
585
+ .
586
+ .IP "" 0
587
+ .
588
+ .SS "environment_timeout"
589
+ How long the Puppet master should cache data it loads from an environment\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\. A value of \fB0\fR will disable caching\. This setting can also be set to \fBunlimited\fR, which will cache environments until the master is restarted or told to refresh the cache\.
590
+ .
591
+ .P
592
+ You should change this setting once your Puppet deployment is doing non\-trivial work\. We chose the default value of \fB0\fR because it lets new users update their code without any extra steps, but it lowers the performance of your Puppet master\.
593
+ .
594
+ .P
595
+ We recommend setting this to \fBunlimited\fR and explicitly refreshing your Puppet master as part of your code deployment process\.
596
+ .
597
+ .IP "\(bu" 4
598
+ With Puppet Server, you should refresh environments by calling the \fBenvironment\-cache\fR API endpoint\. See the docs for the Puppet Server administrative API\.
599
+ .
600
+ .IP "\(bu" 4
601
+ With a Rack Puppet master, you should restart the web server or the application server\. Passenger lets you touch a \fBrestart\.txt\fR file to refresh an application without restarting Apache; see the Passenger docs for details\.
602
+ .
603
+ .IP "" 0
604
+ .
605
+ .P
606
+ We don\'t recommend using any value other than \fB0\fR or \fBunlimited\fR, since most Puppet masters use a pool of Ruby interpreters which all have their own cache timers\. When these timers drift out of sync, agents can be served inconsistent catalogs\.
607
+ .
608
+ .IP "\(bu" 4
609
+ \fIDefault\fR: 0
610
+ .
611
+ .IP "" 0
612
+ .
613
+ .SS "environmentpath"
614
+ A search path for directory environments, as a list of directories separated by the system path separator character\. (The POSIX path separator is \':\', and the Windows path separator is \';\'\.)
615
+ .
616
+ .P
617
+ This setting must have a value set to enable \fBdirectory environments\.\fR The recommended value is \fB$codedir/environments\fR\. For more details, see https://docs\.puppetlabs\.com/puppet/latest/reference/environments\.html
618
+ .
619
+ .IP "\(bu" 4
620
+ \fIDefault\fR: $codedir/environments
621
+ .
622
+ .IP "" 0
623
+ .
624
+ .SS "evaltrace"
625
+ Whether each resource should log when it is being evaluated\. This allows you to interactively see exactly what is being done\.
626
+ .
627
+ .IP "\(bu" 4
628
+ \fIDefault\fR: false
629
+ .
630
+ .IP "" 0
631
+ .
632
+ .SS "external_nodes"
633
+ An external command that can produce node information\. The command\'s output must be a YAML dump of a hash, and that hash must have a \fBclasses\fR key and/or a \fBparameters\fR key, where \fBclasses\fR is an array or hash and \fBparameters\fR is a hash\. For unknown nodes, the command should exit with a non\-zero exit code\.
634
+ .
635
+ .P
636
+ This command makes it straightforward to store your node mapping information in other data sources like databases\.
637
+ .
638
+ .IP "\(bu" 4
639
+ \fIDefault\fR: none
640
+ .
641
+ .IP "" 0
642
+ .
643
+ .SS "factpath"
644
+ Where Puppet should look for facts\. Multiple directories should be separated by the system path separator character\. (The POSIX path separator is \':\', and the Windows path separator is \';\'\.)
645
+ .
646
+ .IP "\(bu" 4
647
+ \fIDefault\fR: $vardir/lib/facter:$vardir/facts
648
+ .
649
+ .IP "" 0
650
+ .
651
+ .SS "facts_terminus"
652
+ The node facts terminus\.
653
+ .
654
+ .IP "\(bu" 4
655
+ \fIDefault\fR: facter
656
+ .
657
+ .IP "" 0
658
+ .
659
+ .SS "fileserverconfig"
660
+ Where the fileserver configuration is stored\.
661
+ .
662
+ .IP "\(bu" 4
663
+ \fIDefault\fR: $confdir/fileserver\.conf
664
+ .
665
+ .IP "" 0
666
+ .
667
+ .SS "filetimeout"
668
+ The minimum time to wait between checking for updates in configuration files\. This timeout determines how quickly Puppet checks whether a file (such as manifests or templates) has changed on disk\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
669
+ .
670
+ .IP "\(bu" 4
671
+ \fIDefault\fR: 15s
672
+ .
673
+ .IP "" 0
674
+ .
675
+ .SS "forge_authorization"
676
+ The authorization key to connect to the Puppet Forge\. Leave blank for unauthorized or license based connections
677
+ .
678
+ .TP
679
+ \fIDefault\fR:
680
+
681
+ .
682
+ .SS "freeze_main"
683
+ Freezes the \'main\' class, disallowing any code to be added to it\. This essentially means that you can\'t have any code outside of a node, class, or definition other than in the site manifest\.
684
+ .
685
+ .IP "\(bu" 4
686
+ \fIDefault\fR: false
687
+ .
688
+ .IP "" 0
689
+ .
690
+ .SS "genconfig"
691
+ When true, causes Puppet applications to print an example config file to stdout and exit\. The example will include descriptions of each setting, and the current (or default) value of each setting, incorporating any settings overridden on the CLI (with the exception of \fBgenconfig\fR itself)\. This setting only makes sense when specified on the command line as \fB\-\-genconfig\fR\.
692
+ .
693
+ .IP "\(bu" 4
694
+ \fIDefault\fR: false
695
+ .
696
+ .IP "" 0
697
+ .
698
+ .SS "genmanifest"
699
+ Whether to just print a manifest to stdout and exit\. Only makes sense when specified on the command line as \fB\-\-genmanifest\fR\. Takes into account arguments specified on the CLI\.
700
+ .
701
+ .IP "\(bu" 4
702
+ \fIDefault\fR: false
703
+ .
704
+ .IP "" 0
705
+ .
706
+ .SS "graph"
707
+ Whether to create \.dot graph files, which let you visualize the dependency and containment relationships in Puppet\'s catalog\. You can load and view these files with tools like OmniGraffle \fIhttp://www\.omnigroup\.com/applications/omnigraffle/\fR (OS X) or graphviz \fIhttp://www\.graphviz\.org/\fR (multi\-platform)\.
708
+ .
709
+ .P
710
+ Graph files are created when \fIapplying\fR a catalog, so this setting should be used on nodes running \fBpuppet agent\fR or \fBpuppet apply\fR\.
711
+ .
712
+ .P
713
+ The \fBgraphdir\fR setting determines where Puppet will save graphs\. Note that we don\'t save graphs for historical runs; Puppet will replace the previous \.dot files with new ones every time it applies a catalog\.
714
+ .
715
+ .P
716
+ See your graphing software\'s documentation for details on opening \.dot files\. If you\'re using GraphViz\'s \fBdot\fR command, you can do a quick PNG render with \fBdot \-Tpng <DOT FILE> \-o <OUTPUT FILE>\fR\.
717
+ .
718
+ .IP "\(bu" 4
719
+ \fIDefault\fR: false
720
+ .
721
+ .IP "" 0
722
+ .
723
+ .SS "graphdir"
724
+ Where to save \.dot\-format graphs (when the \fBgraph\fR setting is enabled)\.
725
+ .
726
+ .IP "\(bu" 4
727
+ \fIDefault\fR: $statedir/graphs
728
+ .
729
+ .IP "" 0
730
+ .
731
+ .SS "group"
732
+ The group puppet master should run as\.
733
+ .
734
+ .IP "\(bu" 4
735
+ \fIDefault\fR: puppet
736
+ .
737
+ .IP "" 0
738
+ .
739
+ .SS "hiera_config"
740
+ The hiera configuration file\. Puppet only reads this file on startup, so you must restart the puppet master every time you edit it\.
741
+ .
742
+ .IP "\(bu" 4
743
+ \fIDefault\fR: $codedir/hiera\.yaml
744
+ .
745
+ .IP "" 0
746
+ .
747
+ .SS "hostcert"
748
+ Where individual hosts store and look for their certificates\.
749
+ .
750
+ .IP "\(bu" 4
751
+ \fIDefault\fR: $certdir/$certname\.pem
752
+ .
753
+ .IP "" 0
754
+ .
755
+ .SS "hostcrl"
756
+ Where the host\'s certificate revocation list can be found\. This is distinct from the certificate authority\'s CRL\.
757
+ .
758
+ .IP "\(bu" 4
759
+ \fIDefault\fR: $ssldir/crl\.pem
760
+ .
761
+ .IP "" 0
762
+ .
763
+ .SS "hostcsr"
764
+ Where individual hosts store and look for their certificate requests\.
765
+ .
766
+ .IP "\(bu" 4
767
+ \fIDefault\fR: $ssldir/csr_$certname\.pem
768
+ .
769
+ .IP "" 0
770
+ .
771
+ .SS "hostprivkey"
772
+ Where individual hosts store and look for their private key\.
773
+ .
774
+ .IP "\(bu" 4
775
+ \fIDefault\fR: $privatekeydir/$certname\.pem
776
+ .
777
+ .IP "" 0
778
+ .
779
+ .SS "hostpubkey"
780
+ Where individual hosts store and look for their public key\.
781
+ .
782
+ .IP "\(bu" 4
783
+ \fIDefault\fR: $publickeydir/$certname\.pem
784
+ .
785
+ .IP "" 0
786
+ .
787
+ .SS "http_connect_timeout"
788
+ The maximum amount of time to wait when establishing an HTTP connection\. The default value is 2 minutes\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
789
+ .
790
+ .IP "\(bu" 4
791
+ \fIDefault\fR: 2m
792
+ .
793
+ .IP "" 0
794
+ .
795
+ .SS "http_debug"
796
+ Whether to write HTTP request and responses to stderr\. This should never be used in a production environment\.
797
+ .
798
+ .IP "\(bu" 4
799
+ \fIDefault\fR: false
800
+ .
801
+ .IP "" 0
802
+ .
803
+ .SS "http_keepalive_timeout"
804
+ The maximum amount of time a persistent HTTP connection can remain idle in the connection pool, before it is closed\. This timeout should be shorter than the keepalive timeout used on the HTTP server, e\.g\. Apache KeepAliveTimeout directive\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
805
+ .
806
+ .IP "\(bu" 4
807
+ \fIDefault\fR: 4s
808
+ .
809
+ .IP "" 0
810
+ .
811
+ .SS "http_proxy_host"
812
+ The HTTP proxy host to use for outgoing connections\. Note: You may need to use a FQDN for the server hostname when using a proxy\. Environment variable http_proxy or HTTP_PROXY will override this value
813
+ .
814
+ .IP "\(bu" 4
815
+ \fIDefault\fR: none
816
+ .
817
+ .IP "" 0
818
+ .
819
+ .SS "http_proxy_password"
820
+ The password for the user of an authenticated HTTP proxy\. Requires the \fBhttp_proxy_user\fR setting\.
821
+ .
822
+ .P
823
+ Note that passwords must be valid when used as part of a URL\. If a password contains any characters with special meanings in URLs (as specified by RFC 3986 section 2\.2), they must be URL\-encoded\. (For example, \fB#\fR would become \fB%23\fR\.)
824
+ .
825
+ .IP "\(bu" 4
826
+ \fIDefault\fR: none
827
+ .
828
+ .IP "" 0
829
+ .
830
+ .SS "http_proxy_port"
831
+ The HTTP proxy port to use for outgoing connections
832
+ .
833
+ .IP "\(bu" 4
834
+ \fIDefault\fR: 3128
835
+ .
836
+ .IP "" 0
837
+ .
838
+ .SS "http_proxy_user"
839
+ The user name for an authenticated HTTP proxy\. Requires the \fBhttp_proxy_host\fR setting\.
840
+ .
841
+ .IP "\(bu" 4
842
+ \fIDefault\fR: none
843
+ .
844
+ .IP "" 0
845
+ .
846
+ .SS "http_read_timeout"
847
+ The time to wait for one block to be read from an HTTP connection\. If nothing is read after the elapsed interval then the connection will be closed\. The default value is unlimited\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
848
+ .
849
+ .TP
850
+ \fIDefault\fR:
851
+
852
+ .
853
+ .SS "ignorecache"
854
+ Ignore cache and always recompile the configuration\. This is useful for testing new configurations, where the local cache may in fact be stale even if the timestamps are up to date \- if the facts change or if the server changes\.
855
+ .
856
+ .IP "\(bu" 4
857
+ \fIDefault\fR: false
858
+ .
859
+ .IP "" 0
860
+ .
861
+ .SS "ignoremissingtypes"
862
+ Skip searching for classes and definitions that were missing during a prior compilation\. The list of missing objects is maintained per\-environment and persists until the environment is cleared or the master is restarted\.
863
+ .
864
+ .IP "\(bu" 4
865
+ \fIDefault\fR: false
866
+ .
867
+ .IP "" 0
868
+ .
869
+ .SS "ignoreschedules"
870
+ Boolean; whether puppet agent should ignore schedules\. This is useful for initial puppet agent runs\.
871
+ .
872
+ .IP "\(bu" 4
873
+ \fIDefault\fR: false
874
+ .
875
+ .IP "" 0
876
+ .
877
+ .SS "keylength"
878
+ The bit length of keys\.
879
+ .
880
+ .IP "\(bu" 4
881
+ \fIDefault\fR: 4096
882
+ .
883
+ .IP "" 0
884
+ .
885
+ .SS "lastrunfile"
886
+ Where puppet agent stores the last run report summary in yaml format\.
887
+ .
888
+ .IP "\(bu" 4
889
+ \fIDefault\fR: $statedir/last_run_summary\.yaml
890
+ .
891
+ .IP "" 0
892
+ .
893
+ .SS "lastrunreport"
894
+ Where puppet agent stores the last run report in yaml format\.
895
+ .
896
+ .IP "\(bu" 4
897
+ \fIDefault\fR: $statedir/last_run_report\.yaml
898
+ .
899
+ .IP "" 0
900
+ .
901
+ .SS "ldapattrs"
902
+ The LDAP attributes to include when querying LDAP for nodes\. All returned attributes are set as variables in the top\-level scope\. Multiple values should be comma\-separated\. The value \'all\' returns all attributes\.
903
+ .
904
+ .IP "\(bu" 4
905
+ \fIDefault\fR: all
906
+ .
907
+ .IP "" 0
908
+ .
909
+ .SS "ldapbase"
910
+ The search base for LDAP searches\. It\'s impossible to provide a meaningful default here, although the LDAP libraries might have one already set\. Generally, it should be the \'ou=Hosts\' branch under your main directory\.
911
+ .
912
+ .SS "ldapclassattrs"
913
+ The LDAP attributes to use to define Puppet classes\. Values should be comma\-separated\.
914
+ .
915
+ .IP "\(bu" 4
916
+ \fIDefault\fR: puppetclass
917
+ .
918
+ .IP "" 0
919
+ .
920
+ .SS "ldapparentattr"
921
+ The attribute to use to define the parent node\.
922
+ .
923
+ .IP "\(bu" 4
924
+ \fIDefault\fR: parentnode
925
+ .
926
+ .IP "" 0
927
+ .
928
+ .SS "ldappassword"
929
+ The password to use to connect to LDAP\.
930
+ .
931
+ .SS "ldapport"
932
+ The LDAP port\. Only used if \fBnode_terminus\fR is set to \fBldap\fR\.
933
+ .
934
+ .IP "\(bu" 4
935
+ \fIDefault\fR: 389
936
+ .
937
+ .IP "" 0
938
+ .
939
+ .SS "ldapserver"
940
+ The LDAP server\. Only used if \fBnode_terminus\fR is set to \fBldap\fR\.
941
+ .
942
+ .IP "\(bu" 4
943
+ \fIDefault\fR: ldap
944
+ .
945
+ .IP "" 0
946
+ .
947
+ .SS "ldapssl"
948
+ Whether SSL should be used when searching for nodes\. Defaults to false because SSL usually requires certificates to be set up on the client side\.
949
+ .
950
+ .IP "\(bu" 4
951
+ \fIDefault\fR: false
952
+ .
953
+ .IP "" 0
954
+ .
955
+ .SS "ldapstackedattrs"
956
+ The LDAP attributes that should be stacked to arrays by adding the values in all hierarchy elements of the tree\. Values should be comma\-separated\.
957
+ .
958
+ .IP "\(bu" 4
959
+ \fIDefault\fR: puppetvar
960
+ .
961
+ .IP "" 0
962
+ .
963
+ .SS "ldapstring"
964
+ The search string used to find an LDAP node\.
965
+ .
966
+ .IP "\(bu" 4
967
+ \fIDefault\fR: (&(objectclass=puppetClient)(cn=%s))
968
+ .
969
+ .IP "" 0
970
+ .
971
+ .SS "ldaptls"
972
+ Whether TLS should be used when searching for nodes\. Defaults to false because TLS usually requires certificates to be set up on the client side\.
973
+ .
974
+ .IP "\(bu" 4
975
+ \fIDefault\fR: false
976
+ .
977
+ .IP "" 0
978
+ .
979
+ .SS "ldapuser"
980
+ The user to use to connect to LDAP\. Must be specified as a full DN\.
981
+ .
982
+ .SS "libdir"
983
+ An extra search path for Puppet\. This is only useful for those files that Puppet will load on demand, and is only guaranteed to work for those cases\. In fact, the autoload mechanism is responsible for making sure this directory is in Ruby\'s search path
984
+ .
985
+ .IP "\(bu" 4
986
+ \fIDefault\fR: $vardir/lib
987
+ .
988
+ .IP "" 0
989
+ .
990
+ .SS "localcacert"
991
+ Where each client stores the CA certificate\.
992
+ .
993
+ .IP "\(bu" 4
994
+ \fIDefault\fR: $certdir/ca\.pem
995
+ .
996
+ .IP "" 0
997
+ .
998
+ .SS "log_level"
999
+ Default logging level for messages from Puppet\. Allowed values are:
1000
+ .
1001
+ .IP "\(bu" 4
1002
+ debug
1003
+ .
1004
+ .IP "\(bu" 4
1005
+ info
1006
+ .
1007
+ .IP "\(bu" 4
1008
+ notice
1009
+ .
1010
+ .IP "\(bu" 4
1011
+ warning
1012
+ .
1013
+ .IP "\(bu" 4
1014
+ err
1015
+ .
1016
+ .IP "\(bu" 4
1017
+ alert
1018
+ .
1019
+ .IP "\(bu" 4
1020
+ emerg
1021
+ .
1022
+ .IP "\(bu" 4
1023
+ crit
1024
+ .
1025
+ .IP "\(bu" 4
1026
+ \fIDefault\fR: notice
1027
+ .
1028
+ .IP "" 0
1029
+ .
1030
+ .SS "logdir"
1031
+ The directory in which to store log files
1032
+ .
1033
+ .TP
1034
+ \fIDefault\fR:
1035
+
1036
+ .
1037
+ .SS "manage_internal_file_permissions"
1038
+ Whether Puppet should manage the owner, group, and mode of files it uses internally
1039
+ .
1040
+ .IP "\(bu" 4
1041
+ \fIDefault\fR: true
1042
+ .
1043
+ .IP "" 0
1044
+ .
1045
+ .SS "manifest"
1046
+ The entry\-point manifest for puppet master\. This can be one file or a directory of manifests to be evaluated in alphabetical order\. Puppet manages this path as a directory if one exists or if the path ends with a / or \.
1047
+ .
1048
+ .P
1049
+ Setting a global value for \fBmanifest\fR in puppet\.conf is not allowed (but it can be overridden from them commandline)\. Please use directory environments instead\. If you need to use something other than the environment\'s \fBmanifests\fR directory as the main manifest, you can set \fBmanifest\fR in environment\.conf\. For more info, see https://docs\.puppetlabs\.com/puppet/latest/reference/environments\.html
1050
+ .
1051
+ .TP
1052
+ \fIDefault\fR:
1053
+
1054
+ .
1055
+ .SS "masterhttplog"
1056
+ Where the puppet master web server saves its access log\. This is only used when running a WEBrick puppet master\. When puppet master is running under a Rack server like Passenger, that web server will have its own logging behavior\.
1057
+ .
1058
+ .IP "\(bu" 4
1059
+ \fIDefault\fR: $logdir/masterhttp\.log
1060
+ .
1061
+ .IP "" 0
1062
+ .
1063
+ .SS "masterport"
1064
+ The port for puppet master traffic\. For puppet master, this is the port to listen on; for puppet agent, this is the port to make requests on\. Both applications use this setting to get the port\.
1065
+ .
1066
+ .IP "\(bu" 4
1067
+ \fIDefault\fR: 8140
1068
+ .
1069
+ .IP "" 0
1070
+ .
1071
+ .SS "max_deprecations"
1072
+ Sets the max number of logged/displayed parser validation deprecation warnings in case multiple deprecation warnings have been detected\. A value of 0 blocks the logging of deprecation warnings\. The count is per manifest\.
1073
+ .
1074
+ .IP "\(bu" 4
1075
+ \fIDefault\fR: 10
1076
+ .
1077
+ .IP "" 0
1078
+ .
1079
+ .SS "max_errors"
1080
+ Sets the max number of logged/displayed parser validation errors in case multiple errors have been detected\. A value of 0 is the same as a value of 1; a minimum of one error is always raised\. The count is per manifest\.
1081
+ .
1082
+ .IP "\(bu" 4
1083
+ \fIDefault\fR: 10
1084
+ .
1085
+ .IP "" 0
1086
+ .
1087
+ .SS "max_warnings"
1088
+ Sets the max number of logged/displayed parser validation warnings in case multiple warnings have been detected\. A value of 0 blocks logging of warnings\. The count is per manifest\.
1089
+ .
1090
+ .IP "\(bu" 4
1091
+ \fIDefault\fR: 10
1092
+ .
1093
+ .IP "" 0
1094
+ .
1095
+ .SS "maximum_uid"
1096
+ The maximum allowed UID\. Some platforms use negative UIDs but then ship with tools that do not know how to handle signed ints, so the UIDs show up as huge numbers that can then not be fed back into the system\. This is a hackish way to fail in a slightly more useful way when that happens\.
1097
+ .
1098
+ .IP "\(bu" 4
1099
+ \fIDefault\fR: 4294967290
1100
+ .
1101
+ .IP "" 0
1102
+ .
1103
+ .SS "mkusers"
1104
+ Whether to create the necessary user and group that puppet agent will run as\.
1105
+ .
1106
+ .IP "\(bu" 4
1107
+ \fIDefault\fR: false
1108
+ .
1109
+ .IP "" 0
1110
+ .
1111
+ .SS "module_groups"
1112
+ Extra module groups to request from the Puppet Forge
1113
+ .
1114
+ .TP
1115
+ \fIDefault\fR:
1116
+
1117
+ .
1118
+ .SS "module_repository"
1119
+ The module repository
1120
+ .
1121
+ .IP "\(bu" 4
1122
+ \fIDefault\fR: https://forgeapi\.puppetlabs\.com
1123
+ .
1124
+ .IP "" 0
1125
+ .
1126
+ .SS "module_skeleton_dir"
1127
+ The directory which the skeleton for module tool generate is stored\.
1128
+ .
1129
+ .IP "\(bu" 4
1130
+ \fIDefault\fR: $module_working_dir/skeleton
1131
+ .
1132
+ .IP "" 0
1133
+ .
1134
+ .SS "module_working_dir"
1135
+ The directory into which module tool data is stored
1136
+ .
1137
+ .IP "\(bu" 4
1138
+ \fIDefault\fR: $vardir/puppet\-module
1139
+ .
1140
+ .IP "" 0
1141
+ .
1142
+ .SS "modulepath"
1143
+ The search path for modules, as a list of directories separated by the system path separator character\. (The POSIX path separator is \':\', and the Windows path separator is \';\'\.)
1144
+ .
1145
+ .P
1146
+ Setting a global value for \fBmodulepath\fR in puppet\.conf is not allowed (but it can be overridden from the commandline)\. Please use directory environments instead\. If you need to use something other than the default modulepath of \fB<ACTIVE ENVIRONMENT\'S MODULES DIR>:$basemodulepath\fR, you can set \fBmodulepath\fR in environment\.conf\. For more info, see https://docs\.puppetlabs\.com/puppet/latest/reference/environments\.html
1147
+ .
1148
+ .SS "name"
1149
+ The name of the application, if we are running as one\. The default is essentially $0 without the path or \fB\.rb\fR\.
1150
+ .
1151
+ .TP
1152
+ \fIDefault\fR:
1153
+
1154
+ .
1155
+ .SS "node_cache_terminus"
1156
+ How to store cached nodes\. Valid values are (none), \'json\', \'msgpack\', \'yaml\' or write only yaml (\'write_only_yaml\')\. The master application defaults to \'write_only_yaml\', all others to none\.
1157
+ .
1158
+ .TP
1159
+ \fIDefault\fR:
1160
+
1161
+ .
1162
+ .SS "node_name"
1163
+ How the puppet master determines the client\'s identity and sets the \'hostname\', \'fqdn\' and \'domain\' facts for use in the manifest, in particular for determining which \'node\' statement applies to the client\. Possible values are \'cert\' (use the subject\'s CN in the client\'s certificate) and \'facter\' (use the hostname that the client reported in its facts)
1164
+ .
1165
+ .IP "\(bu" 4
1166
+ \fIDefault\fR: cert
1167
+ .
1168
+ .IP "" 0
1169
+ .
1170
+ .SS "node_name_fact"
1171
+ The fact name used to determine the node name used for all requests the agent makes to the master\. WARNING: This setting is mutually exclusive with node_name_value\. Changing this setting also requires changes to the default auth\.conf configuration on the Puppet Master\. Please see http://links\.puppetlabs\.com/node_name_fact for more information\.
1172
+ .
1173
+ .SS "node_name_value"
1174
+ The explicit value used for the node name for all requests the agent makes to the master\. WARNING: This setting is mutually exclusive with node_name_fact\. Changing this setting also requires changes to the default auth\.conf configuration on the Puppet Master\. Please see http://links\.puppetlabs\.com/node_name_value for more information\.
1175
+ .
1176
+ .IP "\(bu" 4
1177
+ \fIDefault\fR: $certname
1178
+ .
1179
+ .IP "" 0
1180
+ .
1181
+ .SS "node_terminus"
1182
+ Where to find information about nodes\.
1183
+ .
1184
+ .IP "\(bu" 4
1185
+ \fIDefault\fR: plain
1186
+ .
1187
+ .IP "" 0
1188
+ .
1189
+ .SS "noop"
1190
+ Whether to apply catalogs in noop mode, which allows Puppet to partially simulate a normal run\. This setting affects puppet agent and puppet apply\.
1191
+ .
1192
+ .P
1193
+ When running in noop mode, Puppet will check whether each resource is in sync, like it does when running normally\. However, if a resource attribute is not in the desired state (as declared in the catalog), Puppet will take no action, and will instead report the changes it \fIwould\fR have made\. These simulated changes will appear in the report sent to the puppet master, or be shown on the console if running puppet agent or puppet apply in the foreground\. The simulated changes will not send refresh events to any subscribing or notified resources, although Puppet will log that a refresh event \fIwould\fR have been sent\.
1194
+ .
1195
+ .P
1196
+ \fBImportant note:\fR The \fBnoop\fR metaparameter \fIhttps://docs\.puppetlabs\.com/references/latest/metaparameter\.html#noop\fR allows you to apply individual resources in noop mode, and will override the global value of the \fBnoop\fR setting\. This means a resource with \fBnoop => false\fR \fIwill\fR be changed if necessary, even when running puppet agent with \fBnoop = true\fR or \fB\-\-noop\fR\. (Conversely, a resource with \fBnoop => true\fR will only be simulated, even when noop mode is globally disabled\.)
1197
+ .
1198
+ .IP "\(bu" 4
1199
+ \fIDefault\fR: false
1200
+ .
1201
+ .IP "" 0
1202
+ .
1203
+ .SS "onetime"
1204
+ Perform one configuration run and exit, rather than spawning a long\-running daemon\. This is useful for interactively running puppet agent, or running puppet agent from cron\.
1205
+ .
1206
+ .IP "\(bu" 4
1207
+ \fIDefault\fR: false
1208
+ .
1209
+ .IP "" 0
1210
+ .
1211
+ .SS "ordering"
1212
+ How unrelated resources should be ordered when applying a catalog\. Allowed values are \fBtitle\-hash\fR, \fBmanifest\fR, and \fBrandom\fR\. This setting affects puppet agent and puppet apply, but not puppet master\.
1213
+ .
1214
+ .IP "\(bu" 4
1215
+ \fBmanifest\fR (the default) will use the order in which the resources were declared in their manifest files\.
1216
+ .
1217
+ .IP "\(bu" 4
1218
+ \fBtitle\-hash\fR (the default in 3\.x) will order resources randomly, but will use the same order across runs and across nodes\. It is only of value if you\'re migrating from 3\.x and have errors running with \fBmanifest\fR\.
1219
+ .
1220
+ .IP "\(bu" 4
1221
+ \fBrandom\fR will order resources randomly and change their order with each run\. This can work like a fuzzer for shaking out undeclared dependencies\.
1222
+ .
1223
+ .IP "" 0
1224
+ .
1225
+ .P
1226
+ Regardless of this setting\'s value, Puppet will always obey explicit dependencies set with the before/require/notify/subscribe metaparameters and the \fB\->\fR/\fB~>\fR chaining arrows; this setting only affects the relative ordering of \fIunrelated\fR resources\.
1227
+ .
1228
+ .IP "\(bu" 4
1229
+ \fIDefault\fR: manifest
1230
+ .
1231
+ .IP "" 0
1232
+ .
1233
+ .SS "passfile"
1234
+ Where puppet agent stores the password for its private key\. Generally unused\.
1235
+ .
1236
+ .IP "\(bu" 4
1237
+ \fIDefault\fR: $privatedir/password
1238
+ .
1239
+ .IP "" 0
1240
+ .
1241
+ .SS "path"
1242
+ The shell search path\. Defaults to whatever is inherited from the parent process\.
1243
+ .
1244
+ .P
1245
+ This setting can only be set in the \fB[main]\fR section of puppet\.conf; it cannot be set in \fB[master]\fR, \fB[agent]\fR, or an environment config section\.
1246
+ .
1247
+ .IP "\(bu" 4
1248
+ \fIDefault\fR: none
1249
+ .
1250
+ .IP "" 0
1251
+ .
1252
+ .SS "pidfile"
1253
+ The file containing the PID of a running process\. This file is intended to be used by service management frameworks and monitoring systems to determine if a puppet process is still in the process table\.
1254
+ .
1255
+ .IP "\(bu" 4
1256
+ \fIDefault\fR: $rundir/${run_mode}\.pid
1257
+ .
1258
+ .IP "" 0
1259
+ .
1260
+ .SS "plugindest"
1261
+ Where Puppet should store plugins that it pulls down from the central server\.
1262
+ .
1263
+ .IP "\(bu" 4
1264
+ \fIDefault\fR: $libdir
1265
+ .
1266
+ .IP "" 0
1267
+ .
1268
+ .SS "pluginfactdest"
1269
+ Where Puppet should store external facts that are being handled by pluginsync
1270
+ .
1271
+ .IP "\(bu" 4
1272
+ \fIDefault\fR: $vardir/facts\.d
1273
+ .
1274
+ .IP "" 0
1275
+ .
1276
+ .SS "pluginfactsource"
1277
+ Where to retrieve external facts for pluginsync
1278
+ .
1279
+ .IP "\(bu" 4
1280
+ \fIDefault\fR: puppet:///pluginfacts
1281
+ .
1282
+ .IP "" 0
1283
+ .
1284
+ .SS "pluginsignore"
1285
+ What files to ignore when pulling down plugins\.
1286
+ .
1287
+ .IP "\(bu" 4
1288
+ \fIDefault\fR: \.svn CVS \.git
1289
+ .
1290
+ .IP "" 0
1291
+ .
1292
+ .SS "pluginsource"
1293
+ From where to retrieve plugins\. The standard Puppet \fBfile\fR type is used for retrieval, so anything that is a valid file source can be used here\.
1294
+ .
1295
+ .IP "\(bu" 4
1296
+ \fIDefault\fR: puppet:///plugins
1297
+ .
1298
+ .IP "" 0
1299
+ .
1300
+ .SS "pluginsync"
1301
+ Whether plugins should be synced with the central server\.
1302
+ .
1303
+ .IP "\(bu" 4
1304
+ \fIDefault\fR: true
1305
+ .
1306
+ .IP "" 0
1307
+ .
1308
+ .SS "postrun_command"
1309
+ A command to run after every agent run\. If this command returns a non\-zero return code, the entire Puppet run will be considered to have failed, even though it might have performed work during the normal run\.
1310
+ .
1311
+ .SS "preferred_serialization_format"
1312
+ The preferred means of serializing ruby instances for passing over the wire\. This won\'t guarantee that all instances will be serialized using this method, since not all classes can be guaranteed to support this format, but it will be used for all classes that support it\.
1313
+ .
1314
+ .IP "\(bu" 4
1315
+ \fIDefault\fR: pson
1316
+ .
1317
+ .IP "" 0
1318
+ .
1319
+ .SS "prerun_command"
1320
+ A command to run before every agent run\. If this command returns a non\-zero return code, the entire Puppet run will fail\.
1321
+ .
1322
+ .SS "preview_outputdir"
1323
+ The directory where catalog previews per node are generated\.
1324
+ .
1325
+ .IP "\(bu" 4
1326
+ \fIDefault\fR: $vardir/preview
1327
+ .
1328
+ .IP "" 0
1329
+ .
1330
+ .SS "priority"
1331
+ The scheduling priority of the process\. Valid values are \'high\', \'normal\', \'low\', or \'idle\', which are mapped to platform\-specific values\. The priority can also be specified as an integer value and will be passed as is, e\.g\. \-5\. Puppet must be running as a privileged user in order to increase scheduling priority\.
1332
+ .
1333
+ .TP
1334
+ \fIDefault\fR:
1335
+
1336
+ .
1337
+ .SS "privatedir"
1338
+ Where the client stores private certificate information\.
1339
+ .
1340
+ .IP "\(bu" 4
1341
+ \fIDefault\fR: $ssldir/private
1342
+ .
1343
+ .IP "" 0
1344
+ .
1345
+ .SS "privatekeydir"
1346
+ The private key directory\.
1347
+ .
1348
+ .IP "\(bu" 4
1349
+ \fIDefault\fR: $ssldir/private_keys
1350
+ .
1351
+ .IP "" 0
1352
+ .
1353
+ .SS "profile"
1354
+ Whether to enable experimental performance profiling
1355
+ .
1356
+ .IP "\(bu" 4
1357
+ \fIDefault\fR: false
1358
+ .
1359
+ .IP "" 0
1360
+ .
1361
+ .SS "publickeydir"
1362
+ The public key directory\.
1363
+ .
1364
+ .IP "\(bu" 4
1365
+ \fIDefault\fR: $ssldir/public_keys
1366
+ .
1367
+ .IP "" 0
1368
+ .
1369
+ .SS "puppetdlog"
1370
+ The fallback log file\. This is only used when the \fB\-\-logdest\fR option is not specified AND Puppet is running on an operating system where both the POSIX syslog service and the Windows Event Log are unavailable\. (Currently, no supported operating systems match that description\.)
1371
+ .
1372
+ .P
1373
+ Despite the name, both puppet agent and puppet master will use this file as the fallback logging destination\.
1374
+ .
1375
+ .P
1376
+ For control over logging destinations, see the \fB\-\-logdest\fR command line option in the manual pages for puppet master, puppet agent, and puppet apply\. You can see man pages by running \fBpuppet <SUBCOMMAND> \-\-help\fR, or read them online at https://docs\.puppetlabs\.com/references/latest/man/\.
1377
+ .
1378
+ .IP "\(bu" 4
1379
+ \fIDefault\fR: $logdir/puppetd\.log
1380
+ .
1381
+ .IP "" 0
1382
+ .
1383
+ .SS "report"
1384
+ Whether to send reports after every transaction\.
1385
+ .
1386
+ .IP "\(bu" 4
1387
+ \fIDefault\fR: true
1388
+ .
1389
+ .IP "" 0
1390
+ .
1391
+ .SS "report_port"
1392
+ The port to communicate with the report_server\.
1393
+ .
1394
+ .IP "\(bu" 4
1395
+ \fIDefault\fR: $masterport
1396
+ .
1397
+ .IP "" 0
1398
+ .
1399
+ .SS "report_server"
1400
+ The server to send transaction reports to\.
1401
+ .
1402
+ .IP "\(bu" 4
1403
+ \fIDefault\fR: $server
1404
+ .
1405
+ .IP "" 0
1406
+ .
1407
+ .SS "reportdir"
1408
+ The directory in which to store reports\. Each node gets a separate subdirectory in this directory\. This setting is only used when the \fBstore\fR report processor is enabled (see the \fBreports\fR setting)\.
1409
+ .
1410
+ .IP "\(bu" 4
1411
+ \fIDefault\fR: $vardir/reports
1412
+ .
1413
+ .IP "" 0
1414
+ .
1415
+ .SS "reports"
1416
+ The list of report handlers to use\. When using multiple report handlers, their names should be comma\-separated, with whitespace allowed\. (For example, \fBreports = http, store\fR\.)
1417
+ .
1418
+ .P
1419
+ This setting is relevant to puppet master and puppet apply\. The puppet master will call these report handlers with the reports it receives from agent nodes, and puppet apply will call them with its own report\. (In all cases, the node applying the catalog must have \fBreport = true\fR\.)
1420
+ .
1421
+ .P
1422
+ See the report reference for information on the built\-in report handlers; custom report handlers can also be loaded from modules\. (Report handlers are loaded from the lib directory, at \fBpuppet/reports/NAME\.rb\fR\.)
1423
+ .
1424
+ .IP "\(bu" 4
1425
+ \fIDefault\fR: store
1426
+ .
1427
+ .IP "" 0
1428
+ .
1429
+ .SS "reporturl"
1430
+ The URL that reports should be forwarded to\. This setting is only used when the \fBhttp\fR report processor is enabled (see the \fBreports\fR setting)\.
1431
+ .
1432
+ .IP "\(bu" 4
1433
+ \fIDefault\fR: http://localhost:3000/reports/upload
1434
+ .
1435
+ .IP "" 0
1436
+ .
1437
+ .SS "req_bits"
1438
+ The bit length of the certificates\.
1439
+ .
1440
+ .IP "\(bu" 4
1441
+ \fIDefault\fR: 4096
1442
+ .
1443
+ .IP "" 0
1444
+ .
1445
+ .SS "requestdir"
1446
+ Where host certificate requests are stored\.
1447
+ .
1448
+ .IP "\(bu" 4
1449
+ \fIDefault\fR: $ssldir/certificate_requests
1450
+ .
1451
+ .IP "" 0
1452
+ .
1453
+ .SS "resourcefile"
1454
+ The file in which puppet agent stores a list of the resources associated with the retrieved configuration\.
1455
+ .
1456
+ .IP "\(bu" 4
1457
+ \fIDefault\fR: $statedir/resources\.txt
1458
+ .
1459
+ .IP "" 0
1460
+ .
1461
+ .SS "rest_authconfig"
1462
+ The configuration file that defines the rights to the different rest indirections\. This can be used as a fine\-grained authorization system for \fBpuppet master\fR\.
1463
+ .
1464
+ .IP "\(bu" 4
1465
+ \fIDefault\fR: $confdir/auth\.conf
1466
+ .
1467
+ .IP "" 0
1468
+ .
1469
+ .SS "route_file"
1470
+ The YAML file containing indirector route configuration\.
1471
+ .
1472
+ .IP "\(bu" 4
1473
+ \fIDefault\fR: $confdir/routes\.yaml
1474
+ .
1475
+ .IP "" 0
1476
+ .
1477
+ .SS "rundir"
1478
+ Where Puppet PID files are kept\.
1479
+ .
1480
+ .TP
1481
+ \fIDefault\fR:
1482
+
1483
+ .
1484
+ .SS "runinterval"
1485
+ How often puppet agent applies the catalog\. Note that a runinterval of 0 means "run continuously" rather than "never run\." If you want puppet agent to never run, you should start it with the \fB\-\-no\-client\fR option\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
1486
+ .
1487
+ .IP "\(bu" 4
1488
+ \fIDefault\fR: 30m
1489
+ .
1490
+ .IP "" 0
1491
+ .
1492
+ .SS "serial"
1493
+ Where the serial number for certificates is stored\.
1494
+ .
1495
+ .IP "\(bu" 4
1496
+ \fIDefault\fR: $cadir/serial
1497
+ .
1498
+ .IP "" 0
1499
+ .
1500
+ .SS "server"
1501
+ The puppet master server to which the puppet agent should connect\.
1502
+ .
1503
+ .IP "\(bu" 4
1504
+ \fIDefault\fR: puppet
1505
+ .
1506
+ .IP "" 0
1507
+ .
1508
+ .SS "server_datadir"
1509
+ The directory in which serialized data is stored, usually in a subdirectory\.
1510
+ .
1511
+ .IP "\(bu" 4
1512
+ \fIDefault\fR: $vardir/server_data
1513
+ .
1514
+ .IP "" 0
1515
+ .
1516
+ .SS "show_diff"
1517
+ Whether to log and report a contextual diff when files are being replaced\. This causes partial file contents to pass through Puppet\'s normal logging and reporting system, so this setting should be used with caution if you are sending Puppet\'s reports to an insecure destination\. This feature currently requires the \fBdiff/lcs\fR Ruby library\.
1518
+ .
1519
+ .IP "\(bu" 4
1520
+ \fIDefault\fR: false
1521
+ .
1522
+ .IP "" 0
1523
+ .
1524
+ .SS "signeddir"
1525
+ Where the CA stores signed certificates\.
1526
+ .
1527
+ .IP "\(bu" 4
1528
+ \fIDefault\fR: $cadir/signed
1529
+ .
1530
+ .IP "" 0
1531
+ .
1532
+ .SS "splay"
1533
+ Whether to sleep for a pseudo\-random (but consistent) amount of time before a run\.
1534
+ .
1535
+ .IP "\(bu" 4
1536
+ \fIDefault\fR: false
1537
+ .
1538
+ .IP "" 0
1539
+ .
1540
+ .SS "splaylimit"
1541
+ The maximum time to delay before runs\. Defaults to being the same as the run interval\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
1542
+ .
1543
+ .IP "\(bu" 4
1544
+ \fIDefault\fR: $runinterval
1545
+ .
1546
+ .IP "" 0
1547
+ .
1548
+ .SS "srv_domain"
1549
+ The domain which will be queried to find the SRV records of servers to use\.
1550
+ .
1551
+ .IP "\(bu" 4
1552
+ \fIDefault\fR: corp\.puppetlabs\.net
1553
+ .
1554
+ .IP "" 0
1555
+ .
1556
+ .SS "ssl_client_ca_auth"
1557
+ Certificate authorities who issue server certificates\. SSL servers will not be considered authentic unless they possess a certificate issued by an authority listed in this file\. If this setting has no value then the Puppet master\'s CA certificate (localcacert) will be used\.
1558
+ .
1559
+ .TP
1560
+ \fIDefault\fR:
1561
+
1562
+ .
1563
+ .SS "ssl_client_header"
1564
+ The header containing an authenticated client\'s SSL DN\. This header must be set by the proxy to the authenticated client\'s SSL DN (e\.g\., \fB/CN=puppet\.puppetlabs\.com\fR)\. Puppet will parse out the Common Name (CN) from the Distinguished Name (DN) and use the value of the CN field for authorization\.
1565
+ .
1566
+ .P
1567
+ Note that the name of the HTTP header gets munged by the web server common gateway inteface: an \fBHTTP_\fR prefix is added, dashes are converted to underscores, and all letters are uppercased\. Thus, to use the \fBX\-Client\-DN\fR header, this setting should be \fBHTTP_X_CLIENT_DN\fR\.
1568
+ .
1569
+ .IP "\(bu" 4
1570
+ \fIDefault\fR: HTTP_X_CLIENT_DN
1571
+ .
1572
+ .IP "" 0
1573
+ .
1574
+ .SS "ssl_client_verify_header"
1575
+ The header containing the status message of the client verification\. This header must be set by the proxy to \'SUCCESS\' if the client successfully authenticated, and anything else otherwise\.
1576
+ .
1577
+ .P
1578
+ Note that the name of the HTTP header gets munged by the web server common gateway inteface: an \fBHTTP_\fR prefix is added, dashes are converted to underscores, and all letters are uppercased\. Thus, to use the \fBX\-Client\-Verify\fR header, this setting should be \fBHTTP_X_CLIENT_VERIFY\fR\.
1579
+ .
1580
+ .IP "\(bu" 4
1581
+ \fIDefault\fR: HTTP_X_CLIENT_VERIFY
1582
+ .
1583
+ .IP "" 0
1584
+ .
1585
+ .SS "ssl_server_ca_auth"
1586
+ Certificate authorities who issue client certificates\. SSL clients will not be considered authentic unless they possess a certificate issued by an authority listed in this file\. If this setting has no value then the Puppet master\'s CA certificate (localcacert) will be used\.
1587
+ .
1588
+ .TP
1589
+ \fIDefault\fR:
1590
+
1591
+ .
1592
+ .SS "ssldir"
1593
+ Where SSL certificates are kept\.
1594
+ .
1595
+ .IP "\(bu" 4
1596
+ \fIDefault\fR: $confdir/ssl
1597
+ .
1598
+ .IP "" 0
1599
+ .
1600
+ .SS "statedir"
1601
+ The directory where Puppet state is stored\. Generally, this directory can be removed without causing harm (although it might result in spurious service restarts)\.
1602
+ .
1603
+ .IP "\(bu" 4
1604
+ \fIDefault\fR: $vardir/state
1605
+ .
1606
+ .IP "" 0
1607
+ .
1608
+ .SS "statefile"
1609
+ Where puppet agent and puppet master store state associated with the running configuration\. In the case of puppet master, this file reflects the state discovered through interacting with clients\.
1610
+ .
1611
+ .IP "\(bu" 4
1612
+ \fIDefault\fR: $statedir/state\.yaml
1613
+ .
1614
+ .IP "" 0
1615
+ .
1616
+ .SS "storeconfigs"
1617
+ Whether to store each client\'s configuration, including catalogs, facts, and related data\. This also enables the import and export of resources in the Puppet language \- a mechanism for exchange resources between nodes\.
1618
+ .
1619
+ .P
1620
+ By default this uses the \'puppetdb\' backend\.
1621
+ .
1622
+ .P
1623
+ You can adjust the backend using the storeconfigs_backend setting\.
1624
+ .
1625
+ .IP "\(bu" 4
1626
+ \fIDefault\fR: false
1627
+ .
1628
+ .IP "" 0
1629
+ .
1630
+ .SS "storeconfigs_backend"
1631
+ Configure the backend terminus used for StoreConfigs\. By default, this uses the PuppetDB store, which must be installed and configured before turning on StoreConfigs\.
1632
+ .
1633
+ .IP "\(bu" 4
1634
+ \fIDefault\fR: puppetdb
1635
+ .
1636
+ .IP "" 0
1637
+ .
1638
+ .SS "strict_hostname_checking"
1639
+ Whether to only search for the complete hostname as it is in the certificate when searching for node information in the catalogs\.
1640
+ .
1641
+ .IP "\(bu" 4
1642
+ \fIDefault\fR: false
1643
+ .
1644
+ .IP "" 0
1645
+ .
1646
+ .SS "strict_variables"
1647
+ Makes the parser raise errors when referencing unknown variables\. (This does not affect referencing variables that are explicitly set to undef)\.
1648
+ .
1649
+ .IP "\(bu" 4
1650
+ \fIDefault\fR: false
1651
+ .
1652
+ .IP "" 0
1653
+ .
1654
+ .SS "summarize"
1655
+ Whether to print a transaction summary\.
1656
+ .
1657
+ .IP "\(bu" 4
1658
+ \fIDefault\fR: false
1659
+ .
1660
+ .IP "" 0
1661
+ .
1662
+ .SS "syslogfacility"
1663
+ What syslog facility to use when logging to syslog\. Syslog has a fixed list of valid facilities, and you must choose one of those; you cannot just make one up\.
1664
+ .
1665
+ .IP "\(bu" 4
1666
+ \fIDefault\fR: daemon
1667
+ .
1668
+ .IP "" 0
1669
+ .
1670
+ .SS "tags"
1671
+ Tags to use to find resources\. If this is set, then only resources tagged with the specified tags will be applied\. Values must be comma\-separated\.
1672
+ .
1673
+ .SS "trace"
1674
+ Whether to print stack traces on some errors
1675
+ .
1676
+ .IP "\(bu" 4
1677
+ \fIDefault\fR: false
1678
+ .
1679
+ .IP "" 0
1680
+ .
1681
+ .SS "trusted_oid_mapping_file"
1682
+ File that provides mapping between custom SSL oids and user\-friendly names
1683
+ .
1684
+ .IP "\(bu" 4
1685
+ \fIDefault\fR: $confdir/custom_trusted_oid_mapping\.yaml
1686
+ .
1687
+ .IP "" 0
1688
+ .
1689
+ .SS "trusted_server_facts"
1690
+ Stores a trusted set of server\-side global variables in a hash called $server_facts, which cannot be cannot be overridden by client_facts or logic in manifests\. Makes it illegal to assign to the variable $server_facts in any scope\.
1691
+ .
1692
+ .IP "\(bu" 4
1693
+ \fIDefault\fR: false
1694
+ .
1695
+ .IP "" 0
1696
+ .
1697
+ .SS "use_cached_catalog"
1698
+ Whether to only use the cached catalog rather than compiling a new catalog on every run\. Puppet can be run with this enabled by default and then selectively disabled when a recompile is desired\.
1699
+ .
1700
+ .IP "\(bu" 4
1701
+ \fIDefault\fR: false
1702
+ .
1703
+ .IP "" 0
1704
+ .
1705
+ .SS "use_srv_records"
1706
+ Whether the server will search for SRV records in DNS for the current domain\.
1707
+ .
1708
+ .IP "\(bu" 4
1709
+ \fIDefault\fR: false
1710
+ .
1711
+ .IP "" 0
1712
+ .
1713
+ .SS "usecacheonfailure"
1714
+ Whether to use the cached configuration when the remote configuration will not compile\. This option is useful for testing new configurations, where you want to fix the broken configuration rather than reverting to a known\-good one\.
1715
+ .
1716
+ .IP "\(bu" 4
1717
+ \fIDefault\fR: true
1718
+ .
1719
+ .IP "" 0
1720
+ .
1721
+ .SS "user"
1722
+ The user puppet master should run as\.
1723
+ .
1724
+ .IP "\(bu" 4
1725
+ \fIDefault\fR: puppet
1726
+ .
1727
+ .IP "" 0
1728
+ .
1729
+ .SS "vardir"
1730
+ Where Puppet stores dynamic and growing data\. The default for this setting is calculated specially, like \fBconfdir\fR_\.
1731
+ .
1732
+ .IP "\(bu" 4
1733
+ \fIDefault\fR: /opt/puppetlabs/puppet/cache
1734
+ .
1735
+ .IP "" 0
1736
+ .
1737
+ .SS "waitforcert"
1738
+ How frequently puppet agent should ask for a signed certificate\.
1739
+ .
1740
+ .P
1741
+ When starting for the first time, puppet agent will submit a certificate signing request (CSR) to the server named in the \fBca_server\fR setting (usually the puppet master); this may be autosigned, or may need to be approved by a human, depending on the CA server\'s configuration\.
1742
+ .
1743
+ .P
1744
+ Puppet agent cannot apply configurations until its approved certificate is available\. Since the certificate may or may not be available immediately, puppet agent will repeatedly try to fetch it at this interval\. You can turn off waiting for certificates by specifying a time of 0, in which case puppet agent will exit if it cannot get a cert\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
1745
+ .
1746
+ .IP "\(bu" 4
1747
+ \fIDefault\fR: 2m
1748
+ .
1749
+ .IP "" 0
1750
+ .
1751
+ .SS "yamldir"
1752
+ The directory in which YAML data is stored, usually in a subdirectory\.
1753
+ .
1754
+ .IP "\(bu" 4
1755
+ \fIDefault\fR: $vardir/yaml
1756
+ .
1757
+ .IP "" 0
1758
+ .
1759
+ .P
1760
+ \fIThis page autogenerated on 2015\-05\-18 10:15:47 \-0700\fR