puppet 6.29.0-x64-mingw32 → 7.0.0-x64-mingw32

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 (811) hide show
  1. checksums.yaml +4 -4
  2. data/CODEOWNERS +16 -2
  3. data/CONTRIBUTING.md +5 -5
  4. data/Gemfile +5 -7
  5. data/Gemfile.lock +52 -143
  6. data/README.md +5 -5
  7. data/conf/fileserver.conf +5 -10
  8. data/ext/README.environment +8 -0
  9. data/ext/build_defaults.yaml +1 -1
  10. data/ext/dbfix.sql +132 -0
  11. data/ext/debian/README.Debian +8 -0
  12. data/ext/debian/README.source +2 -0
  13. data/ext/debian/TODO.Debian +1 -0
  14. data/ext/debian/changelog.erb +1122 -0
  15. data/ext/debian/compat +1 -0
  16. data/ext/debian/control +144 -0
  17. data/ext/debian/copyright +339 -0
  18. data/ext/debian/docs +1 -0
  19. data/ext/debian/fileserver.conf +41 -0
  20. data/ext/debian/puppet-common.dirs +13 -0
  21. data/ext/debian/puppet-common.install +3 -0
  22. data/ext/debian/puppet-common.lintian-overrides +5 -0
  23. data/ext/debian/puppet-common.manpages +28 -0
  24. data/ext/debian/puppet-common.postinst +35 -0
  25. data/ext/debian/puppet-common.postrm +33 -0
  26. data/ext/debian/puppet-el.dirs +1 -0
  27. data/ext/debian/puppet-el.emacsen-install +25 -0
  28. data/ext/debian/puppet-el.emacsen-remove +11 -0
  29. data/ext/debian/puppet-el.emacsen-startup +9 -0
  30. data/ext/debian/puppet-el.install +1 -0
  31. data/ext/debian/puppet-testsuite.install +2 -0
  32. data/ext/debian/puppet-testsuite.lintian-overrides +4 -0
  33. data/ext/debian/puppet.lintian-overrides +3 -0
  34. data/ext/debian/puppet.logrotate +20 -0
  35. data/ext/debian/puppet.postinst +20 -0
  36. data/ext/debian/puppet.postrm +20 -0
  37. data/ext/debian/puppet.preinst +20 -0
  38. data/ext/debian/puppetmaster-common.install +2 -0
  39. data/ext/debian/puppetmaster-common.manpages +2 -0
  40. data/ext/debian/puppetmaster-common.postinst +6 -0
  41. data/ext/debian/puppetmaster-passenger.dirs +4 -0
  42. data/ext/debian/puppetmaster-passenger.postinst +162 -0
  43. data/ext/debian/puppetmaster-passenger.postrm +61 -0
  44. data/ext/debian/puppetmaster.README.debian +17 -0
  45. data/ext/debian/puppetmaster.default +14 -0
  46. data/ext/debian/puppetmaster.init +137 -0
  47. data/ext/debian/puppetmaster.lintian-overrides +3 -0
  48. data/ext/debian/puppetmaster.postinst +20 -0
  49. data/ext/debian/puppetmaster.postrm +5 -0
  50. data/ext/debian/puppetmaster.preinst +22 -0
  51. data/ext/debian/rules +132 -0
  52. data/ext/debian/source/format +1 -0
  53. data/ext/debian/source/options +1 -0
  54. data/ext/debian/vim-puppet.README.Debian +13 -0
  55. data/ext/debian/vim-puppet.dirs +5 -0
  56. data/ext/debian/vim-puppet.yaml +7 -0
  57. data/ext/debian/watch +2 -0
  58. data/ext/freebsd/puppetd +26 -0
  59. data/ext/freebsd/puppetmasterd +26 -0
  60. data/ext/gentoo/conf.d/puppet +5 -0
  61. data/ext/gentoo/conf.d/puppetmaster +12 -0
  62. data/ext/gentoo/init.d/puppet +38 -0
  63. data/ext/gentoo/init.d/puppetmaster +51 -0
  64. data/ext/gentoo/puppet/fileserver.conf +41 -0
  65. data/ext/ips/puppet-agent +44 -0
  66. data/ext/ips/puppet-master +44 -0
  67. data/ext/ips/puppet.p5m.erb +12 -0
  68. data/ext/ips/puppetagent.xml +42 -0
  69. data/ext/ips/puppetmaster.xml +42 -0
  70. data/ext/ips/rules +19 -0
  71. data/ext/ips/transforms +34 -0
  72. data/ext/ldap/puppet.schema +24 -0
  73. data/ext/logcheck/puppet +23 -0
  74. data/{examples → ext}/nagios/check_puppet.rb +2 -2
  75. data/ext/osx/file_mapping.yaml +28 -0
  76. data/ext/osx/postflight.erb +109 -0
  77. data/ext/osx/preflight.erb +52 -0
  78. data/ext/osx/prototype.plist.erb +38 -0
  79. data/ext/osx/puppet.plist +0 -2
  80. data/ext/project_data.yaml +2 -16
  81. data/ext/redhat/fileserver.conf +41 -0
  82. data/ext/redhat/logrotate +21 -0
  83. data/ext/redhat/puppet.spec.erb +841 -0
  84. data/ext/redhat/server.init +128 -0
  85. data/ext/redhat/server.sysconfig +13 -0
  86. data/ext/solaris/pkginfo +6 -0
  87. data/ext/solaris/smf/puppetd.xml +77 -0
  88. data/ext/solaris/smf/puppetmasterd.xml +77 -0
  89. data/ext/solaris/smf/svc-puppetd +71 -0
  90. data/ext/solaris/smf/svc-puppetmasterd +67 -0
  91. data/ext/suse/puppet.spec +310 -0
  92. data/ext/suse/server.init +173 -0
  93. data/ext/windows/service/daemon.rb +6 -5
  94. data/ext/yaml_nodes.rb +105 -0
  95. data/install.rb +21 -17
  96. data/lib/puppet/agent.rb +11 -47
  97. data/lib/puppet/application/agent.rb +16 -18
  98. data/lib/puppet/application/apply.rb +4 -24
  99. data/lib/puppet/application/device.rb +100 -106
  100. data/lib/puppet/application/filebucket.rb +13 -10
  101. data/lib/puppet/application/lookup.rb +24 -74
  102. data/lib/puppet/application/resource.rb +16 -32
  103. data/lib/puppet/application/script.rb +0 -2
  104. data/lib/puppet/application/ssl.rb +1 -13
  105. data/lib/puppet/application.rb +178 -108
  106. data/lib/puppet/application_support.rb +0 -7
  107. data/lib/puppet/concurrent/thread_local_singleton.rb +3 -6
  108. data/lib/puppet/configurer/downloader.rb +1 -2
  109. data/lib/puppet/configurer/plugin_handler.rb +21 -19
  110. data/lib/puppet/configurer.rb +86 -183
  111. data/lib/puppet/confine/variable.rb +1 -1
  112. data/lib/puppet/defaults.rb +130 -244
  113. data/lib/puppet/environments.rb +82 -146
  114. data/lib/puppet/face/facts.rb +5 -103
  115. data/lib/puppet/face/generate.rb +0 -2
  116. data/lib/puppet/face/help/action.erb +0 -1
  117. data/lib/puppet/face/help/face.erb +0 -1
  118. data/lib/puppet/face/help.rb +1 -1
  119. data/lib/puppet/face/node/clean.rb +0 -11
  120. data/lib/puppet/face/plugin.rb +5 -8
  121. data/lib/puppet/ffi/windows/api_types.rb +311 -0
  122. data/lib/puppet/ffi/windows/constants.rb +404 -0
  123. data/lib/puppet/ffi/windows/functions.rb +628 -0
  124. data/lib/puppet/ffi/windows/structs.rb +338 -0
  125. data/lib/puppet/ffi/windows.rb +12 -0
  126. data/lib/puppet/file_serving/configuration/parser.rb +3 -34
  127. data/lib/puppet/file_serving/configuration.rb +0 -8
  128. data/lib/puppet/file_serving/fileset.rb +2 -14
  129. data/lib/puppet/file_serving/http_metadata.rb +1 -1
  130. data/lib/puppet/file_serving/metadata.rb +0 -3
  131. data/lib/puppet/file_serving/mount/file.rb +4 -4
  132. data/lib/puppet/file_serving/mount.rb +1 -2
  133. data/lib/puppet/file_system/file_impl.rb +8 -10
  134. data/lib/puppet/file_system/jruby.rb +1 -1
  135. data/lib/puppet/file_system/memory_file.rb +1 -8
  136. data/lib/puppet/file_system/windows.rb +6 -8
  137. data/lib/puppet/file_system.rb +1 -1
  138. data/lib/puppet/forge/repository.rb +0 -1
  139. data/lib/puppet/forge.rb +4 -4
  140. data/lib/puppet/functions/all.rb +1 -1
  141. data/lib/puppet/functions/camelcase.rb +1 -1
  142. data/lib/puppet/functions/capitalize.rb +2 -2
  143. data/lib/puppet/functions/downcase.rb +2 -2
  144. data/lib/puppet/functions/empty.rb +0 -8
  145. data/lib/puppet/functions/find_template.rb +2 -2
  146. data/lib/puppet/functions/get.rb +5 -5
  147. data/lib/puppet/functions/group_by.rb +5 -13
  148. data/lib/puppet/functions/lest.rb +1 -1
  149. data/lib/puppet/functions/new.rb +100 -100
  150. data/lib/puppet/functions/next.rb +1 -18
  151. data/lib/puppet/functions/partition.rb +4 -12
  152. data/lib/puppet/functions/require.rb +5 -5
  153. data/lib/puppet/functions/sort.rb +3 -3
  154. data/lib/puppet/functions/strftime.rb +0 -1
  155. data/lib/puppet/functions/tree_each.rb +10 -7
  156. data/lib/puppet/functions/type.rb +4 -4
  157. data/lib/puppet/functions/unwrap.rb +2 -17
  158. data/lib/puppet/functions/upcase.rb +2 -2
  159. data/lib/puppet/functions/versioncmp.rb +2 -6
  160. data/lib/puppet/generate/models/type/type.rb +4 -1
  161. data/lib/puppet/generate/type.rb +0 -9
  162. data/lib/puppet/http/client.rb +167 -137
  163. data/lib/puppet/{network/resolver.rb → http/dns.rb} +2 -2
  164. data/lib/puppet/http/errors.rb +16 -0
  165. data/lib/puppet/http/external_client.rb +5 -7
  166. data/lib/puppet/{network/http → http}/factory.rb +8 -15
  167. data/lib/puppet/{network/http → http}/pool.rb +61 -26
  168. data/lib/puppet/{network/http/session.rb → http/pool_entry.rb} +2 -3
  169. data/lib/puppet/http/proxy.rb +137 -0
  170. data/lib/puppet/http/redirector.rb +4 -17
  171. data/lib/puppet/http/resolver/server_list.rb +10 -25
  172. data/lib/puppet/http/resolver/settings.rb +4 -7
  173. data/lib/puppet/http/resolver/srv.rb +7 -11
  174. data/lib/puppet/http/resolver.rb +5 -15
  175. data/lib/puppet/http/response.rb +36 -54
  176. data/lib/puppet/http/response_converter.rb +24 -0
  177. data/lib/puppet/http/response_net_http.rb +42 -0
  178. data/lib/puppet/http/retry_after_handler.rb +4 -13
  179. data/lib/puppet/http/service/ca.rb +11 -22
  180. data/lib/puppet/http/service/compiler.rb +23 -144
  181. data/lib/puppet/http/service/file_server.rb +19 -29
  182. data/lib/puppet/http/service/puppetserver.rb +26 -12
  183. data/lib/puppet/http/service/report.rb +8 -10
  184. data/lib/puppet/http/service.rb +12 -26
  185. data/lib/puppet/http/session.rb +11 -20
  186. data/lib/puppet/{network/http → http}/site.rb +1 -2
  187. data/lib/puppet/http.rb +22 -13
  188. data/lib/puppet/indirector/catalog/compiler.rb +6 -25
  189. data/lib/puppet/indirector/catalog/rest.rb +2 -5
  190. data/lib/puppet/indirector/facts/facter.rb +6 -6
  191. data/lib/puppet/indirector/facts/rest.rb +3 -22
  192. data/lib/puppet/indirector/file_bucket_file/rest.rb +3 -9
  193. data/lib/puppet/indirector/file_content/rest.rb +2 -6
  194. data/lib/puppet/indirector/file_metadata/rest.rb +3 -10
  195. data/lib/puppet/indirector/file_server.rb +1 -8
  196. data/lib/puppet/indirector/generic_http.rb +0 -11
  197. data/lib/puppet/indirector/indirection.rb +1 -1
  198. data/lib/puppet/indirector/node/rest.rb +2 -4
  199. data/lib/puppet/indirector/report/rest.rb +3 -8
  200. data/lib/puppet/indirector/request.rb +0 -101
  201. data/lib/puppet/indirector/resource/ral.rb +1 -6
  202. data/lib/puppet/indirector/rest.rb +12 -263
  203. data/lib/puppet/indirector/terminus.rb +0 -4
  204. data/lib/puppet/interface/documentation.rb +0 -1
  205. data/lib/puppet/module/plan.rb +1 -0
  206. data/lib/puppet/module/task.rb +1 -1
  207. data/lib/puppet/module.rb +0 -1
  208. data/lib/puppet/module_tool/applications/installer.rb +2 -56
  209. data/lib/puppet/module_tool/applications/uninstaller.rb +1 -1
  210. data/lib/puppet/module_tool/applications/upgrader.rb +1 -1
  211. data/lib/puppet/module_tool/applications.rb +0 -1
  212. data/lib/puppet/module_tool/errors/shared.rb +2 -34
  213. data/lib/puppet/network/authconfig.rb +2 -96
  214. data/lib/puppet/network/authorization.rb +13 -35
  215. data/lib/puppet/network/formats.rb +0 -67
  216. data/lib/puppet/network/http/api/indirected_routes.rb +3 -21
  217. data/lib/puppet/network/http/api/master/v3.rb +11 -13
  218. data/lib/puppet/network/http/connection.rb +247 -316
  219. data/lib/puppet/network/http/handler.rb +0 -1
  220. data/lib/puppet/network/http.rb +3 -3
  221. data/lib/puppet/network/http_pool.rb +16 -34
  222. data/lib/puppet/node/environment.rb +11 -10
  223. data/lib/puppet/node.rb +2 -31
  224. data/lib/puppet/pal/json_catalog_encoder.rb +4 -0
  225. data/lib/puppet/pal/pal_impl.rb +4 -2
  226. data/lib/puppet/parser/ast/leaf.rb +2 -3
  227. data/lib/puppet/parser/ast/pops_bridge.rb +0 -38
  228. data/lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb +14 -39
  229. data/lib/puppet/parser/compiler.rb +0 -198
  230. data/lib/puppet/parser/functions/fqdn_rand.rb +6 -14
  231. data/lib/puppet/parser/resource.rb +1 -70
  232. data/lib/puppet/parser/scope.rb +0 -1
  233. data/lib/puppet/parser/templatewrapper.rb +1 -2
  234. data/lib/puppet/pops/evaluator/closure.rb +5 -7
  235. data/lib/puppet/pops/evaluator/deferred_resolver.rb +3 -5
  236. data/lib/puppet/pops/evaluator/evaluator_impl.rb +0 -5
  237. data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +3 -4
  238. data/lib/puppet/pops/evaluator/runtime3_support.rb +1 -1
  239. data/lib/puppet/pops/issues.rb +0 -5
  240. data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +6 -8
  241. data/lib/puppet/pops/lookup/lookup_adapter.rb +2 -3
  242. data/lib/puppet/pops/model/ast.pp +0 -42
  243. data/lib/puppet/pops/model/ast.rb +0 -291
  244. data/lib/puppet/pops/model/ast_transformer.rb +1 -1
  245. data/lib/puppet/pops/model/factory.rb +1 -47
  246. data/lib/puppet/pops/model/model_label_provider.rb +0 -5
  247. data/lib/puppet/pops/model/model_tree_dumper.rb +0 -22
  248. data/lib/puppet/pops/model/pn_transformer.rb +0 -16
  249. data/lib/puppet/pops/parser/code_merger.rb +4 -4
  250. data/lib/puppet/pops/parser/egrammar.ra +0 -58
  251. data/lib/puppet/pops/parser/eparser.rb +1685 -1896
  252. data/lib/puppet/pops/parser/lexer2.rb +91 -92
  253. data/lib/puppet/pops/parser/parser_support.rb +0 -5
  254. data/lib/puppet/pops/parser/slurp_support.rb +0 -1
  255. data/lib/puppet/pops/resource/resource_type_impl.rb +2 -24
  256. data/lib/puppet/pops/serialization/to_stringified_converter.rb +1 -1
  257. data/lib/puppet/pops/types/p_sem_ver_type.rb +2 -8
  258. data/lib/puppet/pops/types/p_sensitive_type.rb +0 -10
  259. data/lib/puppet/pops/types/type_calculator.rb +0 -7
  260. data/lib/puppet/pops/types/type_formatter.rb +3 -4
  261. data/lib/puppet/pops/types/type_mismatch_describer.rb +1 -1
  262. data/lib/puppet/pops/types/type_parser.rb +0 -4
  263. data/lib/puppet/pops/types/types.rb +1 -2
  264. data/lib/puppet/pops/validation/checker4_0.rb +9 -37
  265. data/lib/puppet/pops/validation/tasks_checker.rb +0 -12
  266. data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -2
  267. data/lib/puppet/property/list.rb +1 -1
  268. data/lib/puppet/provider/aix_object.rb +1 -1
  269. data/lib/puppet/provider/exec/posix.rb +4 -16
  270. data/lib/puppet/provider/group/groupadd.rb +10 -18
  271. data/lib/puppet/provider/nameservice.rb +0 -18
  272. data/lib/puppet/provider/package/apt.rb +2 -34
  273. data/lib/puppet/provider/package/aptitude.rb +0 -6
  274. data/lib/puppet/provider/package/dnfmodule.rb +1 -1
  275. data/lib/puppet/provider/package/dpkg.rb +0 -10
  276. data/lib/puppet/provider/package/gem.rb +23 -3
  277. data/lib/puppet/provider/package/nim.rb +6 -11
  278. data/lib/puppet/provider/package/pip.rb +3 -16
  279. data/lib/puppet/provider/package/pkg.rb +2 -23
  280. data/lib/puppet/provider/package/portage.rb +1 -1
  281. data/lib/puppet/provider/package/puppet_gem.rb +1 -4
  282. data/lib/puppet/provider/package/puppetserver_gem.rb +17 -8
  283. data/lib/puppet/provider/package/windows/exe_package.rb +1 -30
  284. data/lib/puppet/provider/package/windows/package.rb +1 -2
  285. data/lib/puppet/provider/package/windows.rb +1 -14
  286. data/lib/puppet/provider/package/yum.rb +1 -1
  287. data/lib/puppet/provider/parsedfile.rb +0 -3
  288. data/lib/puppet/provider/service/base.rb +1 -1
  289. data/lib/puppet/provider/service/debian.rb +0 -2
  290. data/lib/puppet/provider/service/init.rb +9 -10
  291. data/lib/puppet/provider/service/launchd.rb +2 -2
  292. data/lib/puppet/provider/service/redhat.rb +1 -1
  293. data/lib/puppet/provider/service/smf.rb +194 -76
  294. data/lib/puppet/provider/service/systemd.rb +6 -16
  295. data/lib/puppet/provider/service/upstart.rb +5 -5
  296. data/lib/puppet/provider/service/windows.rb +0 -38
  297. data/lib/puppet/provider/user/aix.rb +3 -46
  298. data/lib/puppet/provider/user/directoryservice.rb +11 -39
  299. data/lib/puppet/provider/user/useradd.rb +24 -134
  300. data/lib/puppet/provider.rb +1 -14
  301. data/lib/puppet/reference/configuration.rb +8 -7
  302. data/lib/puppet/reference/indirection.rb +1 -1
  303. data/lib/puppet/reference/providers.rb +2 -2
  304. data/lib/puppet/resource/catalog.rb +2 -15
  305. data/lib/puppet/resource/type.rb +3 -119
  306. data/lib/puppet/resource/type_collection.rb +3 -49
  307. data/lib/puppet/resource.rb +6 -127
  308. data/lib/puppet/runtime.rb +2 -13
  309. data/lib/puppet/settings/environment_conf.rb +0 -1
  310. data/lib/puppet/settings/integer_setting.rb +17 -0
  311. data/lib/puppet/settings/port_setting.rb +15 -0
  312. data/lib/puppet/settings/priority_setting.rb +5 -4
  313. data/lib/puppet/settings.rb +82 -98
  314. data/lib/puppet/ssl/base.rb +3 -5
  315. data/lib/puppet/ssl/certificate.rb +0 -6
  316. data/lib/puppet/ssl/certificate_request.rb +1 -12
  317. data/lib/puppet/ssl/certificate_signer.rb +6 -0
  318. data/lib/puppet/ssl/oids.rb +3 -1
  319. data/lib/puppet/ssl/ssl_provider.rb +36 -75
  320. data/lib/puppet/ssl/state_machine.rb +20 -14
  321. data/lib/puppet/ssl/verifier.rb +2 -6
  322. data/lib/puppet/ssl.rb +10 -6
  323. data/lib/puppet/test/test_helper.rb +2 -7
  324. data/lib/puppet/transaction/additional_resource_generator.rb +1 -1
  325. data/lib/puppet/transaction/persistence.rb +1 -21
  326. data/lib/puppet/transaction/report.rb +3 -19
  327. data/lib/puppet/transaction.rb +1 -7
  328. data/lib/puppet/type/exec.rb +6 -36
  329. data/lib/puppet/type/file/checksum.rb +1 -1
  330. data/lib/puppet/type/file/data_sync.rb +1 -1
  331. data/lib/puppet/type/file/mode.rb +0 -6
  332. data/lib/puppet/type/file/selcontext.rb +1 -1
  333. data/lib/puppet/type/file/source.rb +1 -1
  334. data/lib/puppet/type/file.rb +12 -32
  335. data/lib/puppet/type/filebucket.rb +4 -4
  336. data/lib/puppet/type/group.rb +1 -0
  337. data/lib/puppet/type/package.rb +8 -16
  338. data/lib/puppet/type/resources.rb +1 -1
  339. data/lib/puppet/type/service.rb +41 -26
  340. data/lib/puppet/type/tidy.rb +3 -22
  341. data/lib/puppet/type/user.rb +13 -35
  342. data/lib/puppet/type.rb +1 -77
  343. data/lib/puppet/util/autoload.rb +8 -1
  344. data/lib/puppet/util/command_line.rb +1 -1
  345. data/lib/puppet/util/execution.rb +0 -11
  346. data/lib/puppet/util/filetype.rb +2 -2
  347. data/lib/puppet/util/http_proxy.rb +2 -215
  348. data/lib/puppet/util/json.rb +0 -20
  349. data/lib/puppet/util/log.rb +4 -8
  350. data/lib/puppet/util/logging.rb +25 -1
  351. data/lib/puppet/util/monkey_patches.rb +2 -59
  352. data/lib/puppet/util/package.rb +16 -25
  353. data/lib/puppet/util/pidlock.rb +1 -1
  354. data/lib/puppet/util/posix.rb +5 -54
  355. data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +1 -1
  356. data/lib/puppet/util/rdoc.rb +0 -7
  357. data/lib/puppet/util/retry_action.rb +1 -1
  358. data/lib/puppet/util/run_mode.rb +9 -1
  359. data/lib/puppet/util/selinux.rb +4 -30
  360. data/lib/puppet/util/suidmanager.rb +2 -1
  361. data/lib/puppet/util/symbolic_file_mode.rb +17 -29
  362. data/lib/puppet/util/tagging.rb +0 -1
  363. data/lib/puppet/util/windows/adsi.rb +0 -46
  364. data/lib/puppet/util/windows/daemon.rb +360 -0
  365. data/lib/puppet/util/windows/error.rb +1 -0
  366. data/lib/puppet/util/windows/eventlog.rb +4 -9
  367. data/lib/puppet/util/windows/file.rb +8 -242
  368. data/lib/puppet/util/windows/monkey_patches/process.rb +414 -0
  369. data/lib/puppet/util/windows/principal.rb +2 -9
  370. data/lib/puppet/util/windows/process.rb +4 -226
  371. data/lib/puppet/util/windows/service.rb +11 -457
  372. data/lib/puppet/util/windows/sid.rb +2 -6
  373. data/lib/puppet/util/windows/string.rb +12 -13
  374. data/lib/puppet/util/windows/user.rb +2 -0
  375. data/lib/puppet/util/windows.rb +3 -11
  376. data/lib/puppet/util/yaml.rb +1 -42
  377. data/lib/puppet/util.rb +5 -5
  378. data/lib/puppet/vendor/require_vendored.rb +0 -1
  379. data/lib/puppet/version.rb +1 -1
  380. data/lib/puppet/x509/cert_provider.rb +29 -1
  381. data/lib/puppet/x509.rb +5 -1
  382. data/lib/puppet.rb +34 -27
  383. data/locales/puppet.pot +9633 -5
  384. data/man/man5/puppet.conf.5 +286 -401
  385. data/man/man8/puppet-agent.8 +2 -5
  386. data/man/man8/puppet-apply.8 +2 -2
  387. data/man/man8/puppet-catalog.8 +9 -9
  388. data/man/man8/puppet-config.8 +1 -1
  389. data/man/man8/puppet-describe.8 +1 -1
  390. data/man/man8/puppet-device.8 +2 -2
  391. data/man/man8/puppet-doc.8 +1 -1
  392. data/man/man8/puppet-epp.8 +1 -1
  393. data/man/man8/puppet-facts.8 +8 -51
  394. data/man/man8/puppet-filebucket.8 +4 -4
  395. data/man/man8/puppet-generate.8 +1 -1
  396. data/man/man8/puppet-help.8 +1 -1
  397. data/man/man8/puppet-lookup.8 +6 -9
  398. data/man/man8/puppet-module.8 +3 -60
  399. data/man/man8/puppet-node.8 +5 -5
  400. data/man/man8/puppet-parser.8 +1 -1
  401. data/man/man8/puppet-plugin.8 +1 -1
  402. data/man/man8/puppet-report.8 +5 -5
  403. data/man/man8/puppet-resource.8 +1 -1
  404. data/man/man8/puppet-script.8 +2 -2
  405. data/man/man8/puppet-ssl.8 +1 -5
  406. data/man/man8/puppet.8 +2 -2
  407. data/spec/fixtures/ssl/127.0.0.1-key.pem +57 -107
  408. data/spec/fixtures/ssl/127.0.0.1.pem +31 -52
  409. data/spec/fixtures/ssl/bad-basic-constraints.pem +35 -57
  410. data/spec/fixtures/ssl/bad-int-basic-constraints.pem +35 -57
  411. data/spec/fixtures/ssl/ca.pem +35 -57
  412. data/spec/fixtures/ssl/crl.pem +18 -28
  413. data/spec/fixtures/ssl/ec-key.pem +11 -11
  414. data/spec/fixtures/ssl/ec.pem +24 -33
  415. data/spec/fixtures/ssl/encrypted-ec-key.pem +12 -12
  416. data/spec/fixtures/ssl/encrypted-key.pem +58 -108
  417. data/spec/fixtures/ssl/intermediate-agent-crl.pem +19 -28
  418. data/spec/fixtures/ssl/intermediate-agent.pem +36 -57
  419. data/spec/fixtures/ssl/intermediate-crl.pem +21 -31
  420. data/spec/fixtures/ssl/intermediate.pem +36 -57
  421. data/spec/fixtures/ssl/pluto-key.pem +57 -107
  422. data/spec/fixtures/ssl/pluto.pem +30 -52
  423. data/spec/fixtures/ssl/request-key.pem +57 -107
  424. data/spec/fixtures/ssl/request.pem +26 -47
  425. data/spec/fixtures/ssl/revoked-key.pem +57 -107
  426. data/spec/fixtures/ssl/revoked.pem +30 -52
  427. data/spec/fixtures/ssl/signed-key.pem +57 -107
  428. data/spec/fixtures/ssl/signed.pem +30 -52
  429. data/spec/fixtures/ssl/tampered-cert.pem +30 -52
  430. data/spec/fixtures/ssl/tampered-csr.pem +26 -47
  431. data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +57 -107
  432. data/spec/fixtures/ssl/unknown-127.0.0.1.pem +29 -50
  433. data/spec/fixtures/ssl/unknown-ca-key.pem +57 -107
  434. data/spec/fixtures/ssl/unknown-ca.pem +33 -55
  435. data/spec/fixtures/unit/forge/bacula.json +1 -1
  436. data/spec/fixtures/unit/provider/user/aix/aix_passwd_file.out +0 -4
  437. data/spec/integration/application/agent_spec.rb +50 -406
  438. data/spec/integration/application/apply_spec.rb +1 -20
  439. data/spec/integration/application/filebucket_spec.rb +16 -32
  440. data/spec/integration/application/help_spec.rb +2 -0
  441. data/spec/integration/application/lookup_spec.rb +50 -81
  442. data/spec/integration/application/module_spec.rb +0 -21
  443. data/spec/integration/application/plugin_spec.rb +24 -2
  444. data/spec/integration/configurer_spec.rb +2 -18
  445. data/spec/integration/defaults_spec.rb +14 -3
  446. data/spec/integration/environments/settings_interpolation_spec.rb +4 -0
  447. data/spec/integration/http/client_spec.rb +4 -63
  448. data/spec/integration/indirector/direct_file_server_spec.rb +3 -1
  449. data/spec/integration/indirector/facts/facter_spec.rb +39 -93
  450. data/spec/integration/network/http_pool_spec.rb +3 -21
  451. data/spec/integration/parser/catalog_spec.rb +0 -38
  452. data/spec/integration/parser/node_spec.rb +0 -9
  453. data/spec/integration/parser/pcore_resource_spec.rb +0 -47
  454. data/spec/integration/resource/type_collection_spec.rb +6 -2
  455. data/spec/integration/transaction/report_spec.rb +1 -1
  456. data/spec/integration/transaction_spec.rb +9 -4
  457. data/spec/integration/type/exec_spec.rb +45 -70
  458. data/spec/integration/type/file_spec.rb +7 -6
  459. data/spec/integration/type/package_spec.rb +6 -6
  460. data/spec/integration/util/rdoc/parser_spec.rb +1 -1
  461. data/spec/integration/util/windows/adsi_spec.rb +1 -21
  462. data/spec/integration/util/windows/monkey_patches/process_spec.rb +231 -0
  463. data/spec/integration/util/windows/principal_spec.rb +0 -21
  464. data/spec/integration/util/windows/process_spec.rb +9 -1
  465. data/spec/integration/util/windows/registry_spec.rb +10 -6
  466. data/spec/integration/util/windows/security_spec.rb +1 -1
  467. data/spec/lib/matchers/include.rb +27 -0
  468. data/spec/lib/matchers/include_spec.rb +32 -0
  469. data/spec/lib/puppet/test_ca.rb +2 -7
  470. data/spec/lib/puppet_spec/https.rb +1 -1
  471. data/spec/lib/puppet_spec/modules.rb +2 -13
  472. data/spec/lib/puppet_spec/puppetserver.rb +3 -55
  473. data/spec/lib/puppet_spec/settings.rb +1 -1
  474. data/spec/shared_behaviours/documentation_on_faces.rb +2 -0
  475. data/spec/spec_helper.rb +17 -13
  476. data/spec/unit/agent_spec.rb +8 -38
  477. data/spec/unit/application/agent_spec.rb +19 -33
  478. data/spec/unit/application/apply_spec.rb +56 -76
  479. data/spec/unit/application/facts_spec.rb +12 -456
  480. data/spec/unit/application/filebucket_spec.rb +43 -39
  481. data/spec/unit/application/lookup_spec.rb +10 -131
  482. data/spec/unit/application/resource_spec.rb +0 -29
  483. data/spec/unit/application/ssl_spec.rb +2 -25
  484. data/spec/unit/application_spec.rb +9 -51
  485. data/spec/unit/certificate_factory_spec.rb +1 -1
  486. data/spec/unit/configurer/downloader_spec.rb +6 -8
  487. data/spec/unit/configurer/plugin_handler_spec.rb +56 -18
  488. data/spec/unit/configurer_spec.rb +68 -327
  489. data/spec/unit/confine/feature_spec.rb +1 -1
  490. data/spec/unit/confine_spec.rb +2 -8
  491. data/spec/unit/context/trusted_information_spec.rb +2 -6
  492. data/spec/unit/daemon_spec.rb +11 -2
  493. data/spec/unit/defaults_spec.rb +68 -55
  494. data/spec/unit/environments_spec.rb +68 -408
  495. data/spec/unit/face/generate_spec.rb +0 -64
  496. data/spec/unit/face/node_spec.rb +11 -0
  497. data/spec/unit/face/plugin_spec.rb +73 -33
  498. data/spec/unit/file_bucket/dipper_spec.rb +2 -2
  499. data/spec/unit/file_bucket/file_spec.rb +1 -1
  500. data/spec/unit/file_serving/configuration/parser_spec.rb +15 -41
  501. data/spec/unit/file_serving/configuration_spec.rb +10 -26
  502. data/spec/unit/file_serving/fileset_spec.rb +0 -60
  503. data/spec/unit/file_serving/metadata_spec.rb +3 -3
  504. data/spec/unit/file_serving/terminus_helper_spec.rb +4 -11
  505. data/spec/unit/file_system_spec.rb +4 -56
  506. data/spec/unit/forge/module_release_spec.rb +10 -5
  507. data/spec/unit/functions/assert_type_spec.rb +1 -1
  508. data/spec/unit/functions/camelcase_spec.rb +1 -1
  509. data/spec/unit/functions/capitalize_spec.rb +1 -1
  510. data/spec/unit/functions/downcase_spec.rb +1 -1
  511. data/spec/unit/functions/empty_spec.rb +0 -10
  512. data/spec/unit/functions/logging_spec.rb +0 -1
  513. data/spec/unit/functions/lookup_spec.rb +0 -64
  514. data/spec/unit/functions/unwrap_spec.rb +0 -8
  515. data/spec/unit/functions/upcase_spec.rb +1 -1
  516. data/spec/unit/functions/versioncmp_spec.rb +4 -40
  517. data/spec/unit/functions4_spec.rb +2 -2
  518. data/spec/unit/gettext/config_spec.rb +0 -12
  519. data/spec/unit/http/client_spec.rb +8 -84
  520. data/spec/unit/{network/resolver_spec.rb → http/dns_spec.rb} +3 -3
  521. data/spec/unit/http/external_client_spec.rb +4 -4
  522. data/spec/unit/{network/http → http}/factory_spec.rb +5 -30
  523. data/spec/unit/{network/http/session_spec.rb → http/pool_entry_spec.rb} +3 -3
  524. data/spec/unit/{network/http → http}/pool_spec.rb +12 -17
  525. data/spec/unit/{util/http_proxy_spec.rb → http/proxy_spec.rb} +2 -69
  526. data/spec/unit/http/resolver_spec.rb +13 -13
  527. data/spec/unit/http/service/compiler_spec.rb +0 -193
  528. data/spec/unit/http/service/file_server_spec.rb +3 -3
  529. data/spec/unit/http/service/puppetserver_spec.rb +34 -4
  530. data/spec/unit/http/service_spec.rb +0 -1
  531. data/spec/unit/http/session_spec.rb +16 -14
  532. data/spec/unit/{network/http → http}/site_spec.rb +3 -3
  533. data/spec/unit/indirector/catalog/compiler_spec.rb +10 -101
  534. data/spec/unit/indirector/catalog/rest_spec.rb +0 -8
  535. data/spec/unit/indirector/face_spec.rb +1 -0
  536. data/spec/unit/indirector/facts/facter_spec.rb +3 -0
  537. data/spec/unit/indirector/file_bucket_file/file_spec.rb +5 -3
  538. data/spec/unit/indirector/file_bucket_file/selector_spec.rb +8 -26
  539. data/spec/unit/indirector/file_content/rest_spec.rb +0 -4
  540. data/spec/unit/indirector/file_metadata/rest_spec.rb +0 -4
  541. data/spec/unit/indirector/file_server_spec.rb +1 -15
  542. data/spec/unit/indirector/indirection_spec.rb +15 -18
  543. data/spec/unit/indirector/report/rest_spec.rb +2 -17
  544. data/spec/unit/indirector/request_spec.rb +0 -264
  545. data/spec/unit/indirector/resource/ral_spec.rb +75 -40
  546. data/spec/unit/indirector/rest_spec.rb +98 -752
  547. data/spec/unit/indirector/store_configs_spec.rb +7 -0
  548. data/spec/unit/indirector_spec.rb +2 -2
  549. data/spec/unit/interface/action_spec.rb +9 -0
  550. data/spec/unit/module_spec.rb +1 -15
  551. data/spec/unit/module_tool/applications/installer_spec.rb +0 -105
  552. data/spec/unit/network/authconfig_spec.rb +2 -129
  553. data/spec/unit/network/authorization_spec.rb +2 -55
  554. data/spec/unit/network/formats_spec.rb +4 -51
  555. data/spec/unit/network/http/api/indirected_routes_spec.rb +5 -92
  556. data/spec/unit/network/http/api/master/v3_spec.rb +28 -7
  557. data/spec/unit/network/http/api_spec.rb +10 -0
  558. data/spec/unit/network/http/connection_spec.rb +19 -41
  559. data/spec/unit/network/http/handler_spec.rb +0 -1
  560. data/spec/unit/network/http_pool_spec.rb +0 -4
  561. data/spec/unit/node/environment_spec.rb +33 -21
  562. data/spec/unit/node_spec.rb +2 -60
  563. data/spec/unit/parser/compiler_spec.rb +19 -3
  564. data/spec/unit/parser/functions/create_resources_spec.rb +2 -20
  565. data/spec/unit/parser/functions/fqdn_rand_spec.rb +1 -15
  566. data/spec/unit/parser/resource_spec.rb +8 -14
  567. data/spec/unit/parser/templatewrapper_spec.rb +5 -16
  568. data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +4 -7
  569. data/spec/unit/pops/loaders/loaders_spec.rb +6 -21
  570. data/spec/unit/pops/parser/parse_application_spec.rb +4 -22
  571. data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +0 -1
  572. data/spec/unit/pops/parser/parse_capabilities_spec.rb +8 -21
  573. data/spec/unit/pops/parser/parse_containers_spec.rb +13 -2
  574. data/spec/unit/pops/parser/parse_site_spec.rb +20 -24
  575. data/spec/unit/pops/resource/resource_type_impl_spec.rb +0 -71
  576. data/spec/unit/pops/serialization/to_from_hr_spec.rb +1 -1
  577. data/spec/unit/pops/serialization/to_stringified_spec.rb +0 -5
  578. data/spec/unit/pops/types/p_sem_ver_type_spec.rb +0 -18
  579. data/spec/unit/pops/types/p_sensitive_type_spec.rb +0 -18
  580. data/spec/unit/pops/types/type_calculator_spec.rb +6 -12
  581. data/spec/unit/pops/types/type_factory_spec.rb +1 -1
  582. data/spec/unit/pops/validator/validator_spec.rb +61 -51
  583. data/spec/unit/pops/visitor_spec.rb +1 -1
  584. data/spec/unit/property_spec.rb +0 -1
  585. data/spec/unit/provider/group/groupadd_spec.rb +2 -5
  586. data/spec/unit/provider/nameservice_spec.rb +64 -122
  587. data/spec/unit/provider/package/apt_spec.rb +23 -28
  588. data/spec/unit/provider/package/aptitude_spec.rb +1 -1
  589. data/spec/unit/provider/package/base_spec.rb +5 -6
  590. data/spec/unit/provider/package/dnfmodule_spec.rb +1 -10
  591. data/spec/unit/provider/package/dpkg_spec.rb +0 -48
  592. data/spec/unit/provider/package/gem_spec.rb +33 -1
  593. data/spec/unit/provider/package/nim_spec.rb +0 -42
  594. data/spec/unit/provider/package/pacman_spec.rb +12 -18
  595. data/spec/unit/provider/package/pip2_spec.rb +1 -1
  596. data/spec/unit/provider/package/pip3_spec.rb +1 -1
  597. data/spec/unit/provider/package/pip_spec.rb +12 -44
  598. data/spec/unit/provider/package/pkg_spec.rb +4 -29
  599. data/spec/unit/provider/package/pkgdmg_spec.rb +4 -0
  600. data/spec/unit/provider/package/puppet_gem_spec.rb +4 -3
  601. data/spec/unit/provider/package/puppetserver_gem_spec.rb +3 -3
  602. data/spec/unit/provider/package/windows/exe_package_spec.rb +0 -17
  603. data/spec/unit/provider/parsedfile_spec.rb +0 -10
  604. data/spec/unit/provider/service/gentoo_spec.rb +5 -6
  605. data/spec/unit/provider/service/init_spec.rb +9 -16
  606. data/spec/unit/provider/service/launchd_spec.rb +0 -11
  607. data/spec/unit/provider/service/openwrt_spec.rb +29 -23
  608. data/spec/unit/provider/service/redhat_spec.rb +2 -3
  609. data/spec/unit/provider/service/smf_spec.rb +401 -165
  610. data/spec/unit/provider/service/systemd_spec.rb +9 -54
  611. data/spec/unit/provider/service/windows_spec.rb +0 -203
  612. data/spec/unit/provider/user/aix_spec.rb +0 -105
  613. data/spec/unit/provider/user/directoryservice_spec.rb +36 -68
  614. data/spec/unit/provider/user/hpux_spec.rb +1 -1
  615. data/spec/unit/provider/user/pw_spec.rb +0 -2
  616. data/spec/unit/provider/user/useradd_spec.rb +5 -114
  617. data/spec/unit/provider_spec.rb +12 -22
  618. data/spec/unit/puppet_spec.rb +4 -12
  619. data/spec/unit/resource/catalog_spec.rb +2 -15
  620. data/spec/unit/resource/type_collection_spec.rb +2 -22
  621. data/spec/unit/resource/type_spec.rb +1 -1
  622. data/spec/unit/resource_spec.rb +12 -125
  623. data/spec/unit/settings/http_extra_headers_spec.rb +2 -4
  624. data/spec/unit/settings/integer_setting_spec.rb +42 -0
  625. data/spec/unit/settings/port_setting_spec.rb +31 -0
  626. data/spec/unit/settings/priority_setting_spec.rb +4 -4
  627. data/spec/unit/settings_spec.rb +79 -110
  628. data/spec/unit/ssl/base_spec.rb +37 -3
  629. data/spec/unit/ssl/certificate_request_spec.rb +21 -45
  630. data/spec/unit/ssl/certificate_spec.rb +2 -11
  631. data/spec/unit/ssl/ssl_provider_spec.rb +3 -80
  632. data/spec/unit/ssl/state_machine_spec.rb +5 -21
  633. data/spec/unit/ssl/verifier_spec.rb +0 -21
  634. data/spec/unit/transaction/additional_resource_generator_spec.rb +9 -3
  635. data/spec/unit/transaction/event_manager_spec.rb +11 -14
  636. data/spec/unit/transaction/persistence_spec.rb +0 -51
  637. data/spec/unit/transaction/report_spec.rb +0 -2
  638. data/spec/unit/transaction/resource_harness_spec.rb +2 -2
  639. data/spec/unit/transaction_spec.rb +55 -96
  640. data/spec/unit/type/exec_spec.rb +29 -76
  641. data/spec/unit/type/file/checksum_spec.rb +6 -6
  642. data/spec/unit/type/file/content_spec.rb +2 -1
  643. data/spec/unit/type/file/ensure_spec.rb +1 -1
  644. data/spec/unit/type/file/mode_spec.rb +1 -1
  645. data/spec/unit/type/file/selinux_spec.rb +5 -3
  646. data/spec/unit/type/file/source_spec.rb +4 -5
  647. data/spec/unit/type/file_spec.rb +18 -6
  648. data/spec/unit/type/group_spec.rb +6 -13
  649. data/spec/unit/type/package_spec.rb +1 -1
  650. data/spec/unit/type/resources_spec.rb +7 -7
  651. data/spec/unit/type/service_spec.rb +189 -87
  652. data/spec/unit/type/tidy_spec.rb +8 -24
  653. data/spec/unit/type_spec.rb +24 -4
  654. data/spec/unit/util/at_fork_spec.rb +2 -2
  655. data/spec/unit/util/autoload_spec.rb +1 -5
  656. data/spec/unit/util/backups_spec.rb +2 -3
  657. data/spec/unit/util/execution_spec.rb +11 -44
  658. data/spec/unit/util/inifile_spec.rb +14 -6
  659. data/spec/unit/util/log_spec.rb +7 -8
  660. data/spec/unit/util/logging_spec.rb +3 -5
  661. data/spec/unit/util/monkey_patches_spec.rb +0 -6
  662. data/spec/unit/util/posix_spec.rb +15 -363
  663. data/spec/unit/util/run_mode_spec.rb +21 -121
  664. data/spec/unit/util/selinux_spec.rb +68 -163
  665. data/spec/unit/util/storage_spec.rb +1 -3
  666. data/spec/unit/util/suidmanager_spec.rb +41 -44
  667. data/spec/unit/util/windows/sid_spec.rb +0 -41
  668. data/spec/unit/util/windows/string_spec.rb +1 -3
  669. data/spec/unit/util/yaml_spec.rb +13 -92
  670. data/spec/unit/util_spec.rb +6 -31
  671. data/tasks/generate_cert_fixtures.rake +7 -17
  672. data/tasks/parallel.rake +3 -3
  673. metadata +138 -301
  674. data/conf/auth.conf +0 -150
  675. data/ext/README.md +0 -13
  676. data/lib/puppet/application/cert.rb +0 -76
  677. data/lib/puppet/application/key.rb +0 -4
  678. data/lib/puppet/application/man.rb +0 -4
  679. data/lib/puppet/application/status.rb +0 -4
  680. data/lib/puppet/face/key.rb +0 -16
  681. data/lib/puppet/face/man.rb +0 -145
  682. data/lib/puppet/face/module/build.rb +0 -14
  683. data/lib/puppet/face/module/generate.rb +0 -14
  684. data/lib/puppet/face/module/search.rb +0 -103
  685. data/lib/puppet/face/status.rb +0 -51
  686. data/lib/puppet/facter_impl.rb +0 -96
  687. data/lib/puppet/ffi/posix/constants.rb +0 -14
  688. data/lib/puppet/ffi/posix/functions.rb +0 -24
  689. data/lib/puppet/ffi/posix.rb +0 -10
  690. data/lib/puppet/file_serving/mount/scripts.rb +0 -24
  691. data/lib/puppet/indirector/certificate/file.rb +0 -9
  692. data/lib/puppet/indirector/certificate/rest.rb +0 -18
  693. data/lib/puppet/indirector/certificate_request/file.rb +0 -9
  694. data/lib/puppet/indirector/certificate_request/memory.rb +0 -7
  695. data/lib/puppet/indirector/certificate_request/rest.rb +0 -11
  696. data/lib/puppet/indirector/file_content/http.rb +0 -22
  697. data/lib/puppet/indirector/key/file.rb +0 -46
  698. data/lib/puppet/indirector/key/memory.rb +0 -7
  699. data/lib/puppet/indirector/ssl_file.rb +0 -162
  700. data/lib/puppet/indirector/status/local.rb +0 -12
  701. data/lib/puppet/indirector/status/rest.rb +0 -27
  702. data/lib/puppet/indirector/status.rb +0 -3
  703. data/lib/puppet/module_tool/applications/searcher.rb +0 -29
  704. data/lib/puppet/network/auth_config_parser.rb +0 -90
  705. data/lib/puppet/network/authstore.rb +0 -283
  706. data/lib/puppet/network/http/api/master/v3/authorization.rb +0 -18
  707. data/lib/puppet/network/http/api/master/v3/environment.rb +0 -88
  708. data/lib/puppet/network/http/base_pool.rb +0 -36
  709. data/lib/puppet/network/http/compression.rb +0 -127
  710. data/lib/puppet/network/http/connection_adapter.rb +0 -184
  711. data/lib/puppet/network/http/nocache_pool.rb +0 -28
  712. data/lib/puppet/network/rest_controller.rb +0 -2
  713. data/lib/puppet/network/rights.rb +0 -210
  714. data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +0 -66
  715. data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +0 -22
  716. data/lib/puppet/parser/environment_compiler.rb +0 -202
  717. data/lib/puppet/pops/types/enumeration.rb +0 -16
  718. data/lib/puppet/resource/capability_finder.rb +0 -154
  719. data/lib/puppet/rest/errors.rb +0 -15
  720. data/lib/puppet/rest/response.rb +0 -35
  721. data/lib/puppet/rest/route.rb +0 -85
  722. data/lib/puppet/rest/routes.rb +0 -135
  723. data/lib/puppet/settings/alias_setting.rb +0 -37
  724. data/lib/puppet/ssl/host.rb +0 -505
  725. data/lib/puppet/ssl/key.rb +0 -61
  726. data/lib/puppet/ssl/validator/default_validator.rb +0 -209
  727. data/lib/puppet/ssl/validator/no_validator.rb +0 -22
  728. data/lib/puppet/ssl/validator.rb +0 -61
  729. data/lib/puppet/ssl/verifier_adapter.rb +0 -58
  730. data/lib/puppet/status.rb +0 -40
  731. data/lib/puppet/util/connection.rb +0 -88
  732. data/lib/puppet/util/fact_dif.rb +0 -81
  733. data/lib/puppet/util/ssl.rb +0 -83
  734. data/lib/puppet/util/windows/api_types.rb +0 -309
  735. data/lib/puppet/util/windows/monkey_patches/dir.rb +0 -40
  736. data/lib/puppet/vendor/load_pathspec.rb +0 -1
  737. data/lib/puppet/vendor/pathspec/CHANGELOG.md +0 -2
  738. data/lib/puppet/vendor/pathspec/LICENSE +0 -201
  739. data/lib/puppet/vendor/pathspec/PUPPET_README.md +0 -6
  740. data/lib/puppet/vendor/pathspec/README.md +0 -53
  741. data/lib/puppet/vendor/pathspec/lib/pathspec/gitignorespec.rb +0 -275
  742. data/lib/puppet/vendor/pathspec/lib/pathspec/regexspec.rb +0 -17
  743. data/lib/puppet/vendor/pathspec/lib/pathspec/spec.rb +0 -14
  744. data/lib/puppet/vendor/pathspec/lib/pathspec.rb +0 -122
  745. data/man/man8/puppet-key.8 +0 -126
  746. data/man/man8/puppet-man.8 +0 -76
  747. data/man/man8/puppet-status.8 +0 -108
  748. data/spec/fixtures/integration/application/agent/cached_deferred_catalog.json +0 -92
  749. data/spec/fixtures/integration/application/agent/lib/facter/agent_spec_role.rb +0 -3
  750. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Gemfile +0 -4
  751. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Rakefile +0 -3
  752. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/lib/puppet/functions/l10n.rb +0 -8
  753. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/config.yaml +0 -25
  754. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/ja/puppet-l10n.po +0 -19
  755. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/puppet-l10n.pot +0 -20
  756. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/metadata.json +0 -8
  757. data/spec/fixtures/ssl/oid-key.pem +0 -117
  758. data/spec/fixtures/ssl/oid.pem +0 -69
  759. data/spec/fixtures/ssl/trusted_oid_mapping.yaml +0 -5
  760. data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services_vendor_preset +0 -9
  761. data/spec/integration/application/resource_spec.rb +0 -68
  762. data/spec/integration/application/ssl_spec.rb +0 -20
  763. data/spec/integration/l10n/compiler_spec.rb +0 -37
  764. data/spec/integration/network/authconfig_spec.rb +0 -256
  765. data/spec/integration/util/windows/monkey_patches/dir_spec.rb +0 -11
  766. data/spec/shared_contexts/l10n.rb +0 -32
  767. data/spec/unit/application/man_spec.rb +0 -52
  768. data/spec/unit/capability_spec.rb +0 -414
  769. data/spec/unit/concurrent/thread_local_singleton_spec.rb +0 -39
  770. data/spec/unit/face/key_spec.rb +0 -9
  771. data/spec/unit/face/module/search_spec.rb +0 -231
  772. data/spec/unit/face/status_spec.rb +0 -9
  773. data/spec/unit/facter_impl_spec.rb +0 -31
  774. data/spec/unit/file_serving/mount/scripts_spec.rb +0 -69
  775. data/spec/unit/indirector/certificate/file_spec.rb +0 -14
  776. data/spec/unit/indirector/certificate/rest_spec.rb +0 -61
  777. data/spec/unit/indirector/certificate_request/file_spec.rb +0 -14
  778. data/spec/unit/indirector/certificate_request/rest_spec.rb +0 -25
  779. data/spec/unit/indirector/key/file_spec.rb +0 -78
  780. data/spec/unit/indirector/ssl_file_spec.rb +0 -305
  781. data/spec/unit/indirector/status/local_spec.rb +0 -10
  782. data/spec/unit/indirector/status/rest_spec.rb +0 -50
  783. data/spec/unit/module_tool/applications/searcher_spec.rb +0 -38
  784. data/spec/unit/network/auth_config_parser_spec.rb +0 -115
  785. data/spec/unit/network/authstore_spec.rb +0 -407
  786. data/spec/unit/network/http/api/master/v3/authorization_spec.rb +0 -57
  787. data/spec/unit/network/http/api/master/v3/environment_spec.rb +0 -185
  788. data/spec/unit/network/http/compression_spec.rb +0 -240
  789. data/spec/unit/network/http/nocache_pool_spec.rb +0 -64
  790. data/spec/unit/network/http_spec.rb +0 -9
  791. data/spec/unit/network/rights_spec.rb +0 -439
  792. data/spec/unit/parser/environment_compiler_spec.rb +0 -730
  793. data/spec/unit/pops/evaluator/deferred_resolver_spec.rb +0 -20
  794. data/spec/unit/pops/types/enumeration_spec.rb +0 -51
  795. data/spec/unit/resource/capability_finder_spec.rb +0 -148
  796. data/spec/unit/rest/route_spec.rb +0 -132
  797. data/spec/unit/ssl/host_spec.rb +0 -645
  798. data/spec/unit/ssl/key_spec.rb +0 -173
  799. data/spec/unit/ssl/validator_spec.rb +0 -278
  800. data/spec/unit/status_spec.rb +0 -45
  801. data/spec/unit/util/json_spec.rb +0 -126
  802. data/spec/unit/util/ssl_spec.rb +0 -91
  803. data/spec/unit/util/windows_spec.rb +0 -23
  804. /data/{examples/enc → ext}/regexp_nodes/classes/databases +0 -0
  805. /data/{examples/enc → ext}/regexp_nodes/classes/webservers +0 -0
  806. /data/{examples/enc → ext}/regexp_nodes/environment/development +0 -0
  807. /data/{examples/enc → ext}/regexp_nodes/parameters/service/prod +0 -0
  808. /data/{examples/enc → ext}/regexp_nodes/parameters/service/qa +0 -0
  809. /data/{examples/enc → ext}/regexp_nodes/parameters/service/sandbox +0 -0
  810. /data/{examples/enc → ext}/regexp_nodes/regexp_nodes.rb +0 -0
  811. /data/spec/fixtures/unit/provider/service/smf/{svcs.out → svcs_instances.out} +0 -0
@@ -0,0 +1,1122 @@
1
+ puppet (<%= @debversion %>) hardy lucid natty oneiric unstable sid squeeze wheezy precise; urgency=low
2
+
3
+ * Update to version <%= @debversion %>
4
+
5
+ -- Puppet Labs Release <info@puppetlabs.com> <%= Time.now.strftime("%a, %d %b %Y %H:%M:%S %z")%>
6
+
7
+ puppet (3.2.3-0.1rc0puppetlabs1) lucid unstable sid squeeze wheezy precise quantal raring; urgency=low
8
+
9
+ * Update ruby-rgen dependency to 0.6.5
10
+
11
+ -- Matthaus Owens <matthaus@puppetlabs.com> Thu, 27 Jun 2013 14:45:14 +0000
12
+
13
+ puppet (3.2.0-0.1rc0puppetlabs1) lucid oneiric precise unstable sid squeeze wheezy precise; urgency=low
14
+
15
+ * Add ruby-rgen dependency for new parser in Puppet 3.2
16
+
17
+ -- Matthaus Owens <matthaus@puppetlabs.com> Fri, 12 Apr 2013 14:45:14 +0000
18
+
19
+ puppet (3.1.0-0.1rc1puppetlabs1) lucid natty oneiric precise unstable sid squeeze wheezy precise; urgency=low
20
+
21
+ * Add extlookup2hiera manpage to puppet-common.manpages
22
+
23
+ -- Matthaus Owens <matthaus@puppetlabs.com> Fri, 25 Jan 2013 14:45:14 +0000
24
+
25
+ puppet (2.7.19-1puppetlabs2) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
26
+
27
+ * (#16086) Add version parameter to rm_conffile call in puppetmaster preinst and postinst
28
+
29
+ -- Will Hopper <whopper@puppetlabs.com> Thu, 23 Aug 2012 12:00:14 +0000
30
+
31
+ puppet (2.7.19-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
32
+
33
+ * Imported Upstream version 2.7.19
34
+
35
+ -- Moses Mendoza <moses@puppetlabs.com> Tue, 21 Aug 2012 15:09:14 +0000
36
+
37
+ puppet (2.7.19-0.1rc3puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
38
+
39
+ * Imported Upstream version 2.7.19rc3
40
+
41
+ -- Moses Mendoza <moses@puppetlabs.com> Tue, 14 Aug 2012 13:00:14 +0000
42
+
43
+ puppet (2.7.19-0.1rc2puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
44
+
45
+ * Imported Upstream version 2.7.19rc2
46
+
47
+ -- Moses Mendoza <moses@puppetlabs.com> Tue, 7 Aug 2012 16:04:14 +0000
48
+
49
+ puppet (2.7.19-0.1rc1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
50
+
51
+ * Imported Upstream version 2.7.19rc1
52
+
53
+ -- Moses Mendoza <moses@puppetlabs.com> Wed, 1 Aug 2012 16:32:14 +0000
54
+
55
+ puppet (2.7.18-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
56
+
57
+ * Imported Upstream version 2.7.18
58
+
59
+ -- Moses Mendoza <moses@puppetlabs.com> Tue, 10 Jun 2012 14:02:14 +0000
60
+
61
+ puppet (2.7.17-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
62
+
63
+ * Imported Upstream version 2.7.17
64
+
65
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Tue, 19 Jun 2012 23:43:14 +0000
66
+
67
+ puppet (2.7.16-2puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
68
+
69
+ * Combine logrotate configurations for puppetmaster and puppet to resolve duplicate log entry errors
70
+
71
+ -- William Hopper <whopper@puppetlabs.com> Mon, 18 Jun 2012 17:33:00 +0000
72
+
73
+ puppet (2.7.16-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
74
+
75
+ * Imported Upstream version 2.7.16
76
+
77
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Wed, 13 Jun 2012 21:16:17 +0000
78
+
79
+ puppet (2.7.16-0.1rc1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
80
+
81
+ * Imported Upstream version 2.7.16rc1
82
+
83
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Wed, 06 Jun 2012 23:19:24 +0000
84
+
85
+ puppet (2.7.15-0.1rc4puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
86
+
87
+ * Imported Upstream version 2.7.15rc4
88
+
89
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Fri, 01 Jun 2012 22:20:21 +0000
90
+
91
+ puppet (2.7.15-0.1rc1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
92
+
93
+ * Imported Upstream version 2.7.15rc1
94
+
95
+ -- Moses Mendoza <moses@puppetlabs.com> Tue, 15 May 2012 17:30:38 +0000
96
+
97
+ puppet (2.7.14-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
98
+
99
+ * Imported Upstream version 2.7.14
100
+
101
+ -- Moses Mendoza <moses@puppetlabs.com> Wed, 02 May 2012 12:28:38 +0000
102
+
103
+ puppet (2.7.13-1puppetlabs2) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
104
+
105
+ * (#14080) Add suggests on ruby-activerecord | libactiverecord-ruby
106
+
107
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Tue, 01 May 2012 19:52:38 +0000
108
+
109
+ puppet (2.7.13-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
110
+
111
+ * Imported Upstream version 2.7.13
112
+
113
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Tue, 10 Apr 2012 20:38:23 +0000
114
+
115
+ puppet (2.7.12-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
116
+
117
+ * Imported Upstream version 2.7.12
118
+
119
+ -- Michael Stahnke <stahnma@puppetlabs.com> Mon, 12 Mar 2012 16:49:40 +0000
120
+
121
+ puppet (2.7.11-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
122
+
123
+ * Imported Upstream version 2.7.11
124
+ * CVE-2012-1053/1054
125
+
126
+ -- Michael Stahnke <stahnma@puppetlabs.com> Wed, 22 Feb 2012 01:11:43 +0000
127
+
128
+ puppet (2.7.10-1puppetlabs2) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
129
+
130
+ * (#12498) Add ext directory to puppet-common package. Enable apache2 headers module on passenger install
131
+
132
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Fri, 10 Feb 2012 00:44:48 +0000
133
+
134
+ puppet (2.7.10-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
135
+
136
+ * Imported Upstream version 2.7.10
137
+
138
+ -- Michael Stahnke <stahnma@puppetlabs.com> Wed, 25 Jan 2012 23:33:34 +0000
139
+
140
+ puppet (2.7.9-1puppetlabs3) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
141
+
142
+ * (#11509, #11656) Fix puppetmaster-passenger to set up puppet ca with passenger correctly.
143
+
144
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Tue, 2 Jan 2011 9:25:27 +0000
145
+
146
+ puppet (2.7.9-1puppetlabs2) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
147
+
148
+ * Fix puppet-passenger post-inst to use the correct puppet commands.
149
+
150
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Tue, 20 Dec 2011 14:30:27 +0000
151
+
152
+ puppet (2.7.9-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
153
+
154
+ * Release 2.7.9
155
+
156
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Fri, 9 Dec 2011 20:15:27 +0000
157
+
158
+ puppet (2.7.8-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
159
+
160
+ * Release 2.7.8
161
+
162
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Thu, 8 Dec 2011 17:55:27 +0000
163
+
164
+ puppet (2.7.7-1puppetlabs2) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
165
+
166
+ * Update dependencies. Decrease sysv-rc to 2.86 and update gbp.conf to allow multiple dists per build.
167
+
168
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Fri, 2 Dec 2011 11:55:27 +0000
169
+
170
+ puppet (2.7.7-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
171
+
172
+ * Update to 2.7.7
173
+
174
+ -- Michael Stahnke <stahnma@puppetlabs.com> Tue, 22 Nov 2011 00:07:27 +0000
175
+
176
+ puppet (2.7.6-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
177
+
178
+ * Update to 2.7.6
179
+ - Includes fix for CVE-2011-3872
180
+
181
+ -- Michael Stahnke <stahnma@puppetlabs.com> Sun, 23 Oct 2011 15:58:26 -0700
182
+
183
+ puppet (2.7.3-1puppetlabs1) lenny; urgency=low
184
+
185
+ * Update to 2.7.3
186
+ - Ripped out etckeeper
187
+ - s/Reductive/Puppet/g
188
+
189
+ -- Michael Stahnke <stahnma@puppetlabs.com> Sun, 25 Sep 2011 00:38:02 -0700
190
+
191
+ puppet (2.7.1-1ubuntu1) oneiric; urgency=low
192
+
193
+ * Merge from debian unstable. Remaining changes:
194
+ - debian/puppetmaster-passenger.postinst: Use cacrl instead of hostcrl to
195
+ set the location of the CRL in apache2 configuration. Fix apache2
196
+ configuration on upgrade as well (LP: #641001)
197
+ - move all puppet dependencies to puppet-common since all the code
198
+ actually located in puppet-common.
199
+ - move libagueas from a recommend to a dependency.
200
+
201
+ -- Chuck Short <zulcss@ubuntu.com> Mon, 25 Jul 2011 01:00:37 +0100
202
+
203
+ puppet (2.7.1-1) UNRELEASED; urgency=low
204
+
205
+ * New upstream version
206
+ * Bump Standards-Version (no changes)
207
+ * Adjust debian/source/options to allow for a VCS-generated patch
208
+ * Tell adduser not to create /var/lib/puppet (Closes: #609896)
209
+ * Use dpkg-statoverride to handle permissions
210
+ * Allow the use of file-rc (Closes: #625638)
211
+ * Use the pkg-ruby-extras watch service
212
+
213
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Sun, 17 Jul 2011 17:43:31 +0200
214
+
215
+ puppet (2.6.8-1ubuntu1) oneiric; urgency=low
216
+
217
+ * Merge from debian unstable. Remaining changes:
218
+ - debian/puppetmaster-passenger.postinst: Use cacrl instead of hostcrl to
219
+ set the location of the CRL in apache2 configuration. Fix apache2
220
+ configuration on upgrade as well (LP: #641001)
221
+ - move all puppet dependencies to puppet-common since all the code
222
+ actually located in puppet-common.
223
+ - move libagueas from a recommend to a dependency.
224
+
225
+ -- Chuck Short <zulcss@ubuntu.com> Mon, 02 May 2011 12:37:51 +0100
226
+
227
+ puppet (2.6.8-1) unstable; urgency=low
228
+
229
+ * New upstream version
230
+
231
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Thu, 28 Apr 2011 19:26:00 +0200
232
+
233
+ puppet (2.6.7-2) unstable; urgency=medium
234
+
235
+ * Fix puppetmaster-passenger.postinst to get proper
236
+ ssl configs (Closes: #620635)
237
+ * Fix maintainer scripts ignoring errors
238
+
239
+ -- Micah Anderson <micah@debian.org> Mon, 11 Apr 2011 11:31:23 -0400
240
+
241
+ puppet (2.6.7-1) unstable; urgency=low
242
+
243
+ * New upstream version
244
+
245
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Fri, 25 Mar 2011 21:10:07 +0100
246
+
247
+ puppet (2.6.6-1) unstable; urgency=low
248
+
249
+ * New upstream release 2.6.6
250
+
251
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Thu, 10 Mar 2011 08:42:00 +0100
252
+
253
+ puppet (2.6.6~rc1-1) experimental; urgency=low
254
+
255
+ * New upstream release candidate
256
+
257
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Thu, 03 Mar 2011 21:00:31 +0100
258
+
259
+ puppet (2.6.5-1) unstable; urgency=low
260
+
261
+ * New upstream version (Closes: #612894)
262
+ * Remove renamed configuration files now handled by other packages (Closes: #564947, #611615)
263
+
264
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Tue, 01 Mar 2011 13:59:58 +0100
265
+
266
+ puppet (2.6.4-2ubuntu2) natty; urgency=low
267
+
268
+ * debian/puppetmaster.default
269
+ - fix remains of automated merge (LP: #726856)
270
+
271
+ -- Andreas Moog <amoog@ubuntu.com> Tue, 01 Mar 2011 14:04:06 +0100
272
+
273
+ puppet (2.6.4-2ubuntu1) natty; urgency=low
274
+
275
+ * Merge from debian unstable. Remaining changes:
276
+ - debian/puppetmaster-passenger.postinst: Use cacrl instead of hostcrl to
277
+ set the location of the CRL in apache2 configuration. Fix apache2
278
+ configuration on upgrade as well (LP: #641001)
279
+ - move all puppet dependencies to puppet-common since all the code
280
+ actually located in puppet-common.
281
+ - move libagueas from a recommend to a dependency.
282
+
283
+ -- Chuck Short <zulcss@ubuntu.com> Tue, 08 Feb 2011 00:28:43 +0000
284
+
285
+ puppet (2.6.4-2) unstable; urgency=low
286
+
287
+ * Release for unstable
288
+ * Move puppetstoredconfigclean to puppetmaster-common, and set ruby1.8
289
+ as parser to match the rest of the puppet suite
290
+
291
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Mon, 07 Feb 2011 07:28:19 +0100
292
+
293
+ puppet (2.6.4-1) experimental; urgency=low
294
+
295
+ [ Micah Anderson ]
296
+ * Make puppetqd honor flags from /etc/default/puppetqd (Closes: #605510)
297
+ * Remove the puppetqd PID file on stop (Closes: #605512)
298
+ * Add ext/puppetstoredconfigclean to puppetmaster:/usr/sbin
299
+ * Patch ext/logcheck/puppet to handle new puppet-master
300
+ Compiled log lines (Closes: #602336)
301
+ * Fix puppetqd initscript PID location
302
+ * Fix /etc/default/puppetmaster comments to match new section headings
303
+ * Fix puppetmaster/README.Debian to match new section headings
304
+ * Fix Should-Start init header in puppet initscript
305
+
306
+ [ Mathias Gug ]
307
+ * New upstream version.
308
+
309
+ [ Stig Sandbeck Mathisen ]
310
+ * debian/puppetmaster.logrotate: send SIGUSR2 on log rotation (Closes:
311
+ #602698)
312
+ * puppet-common: Add versioned dependency on sysv-rc
313
+
314
+ [ martin f krafft ]
315
+ * Use update-rc.d enable/disable in the "debian" provider in the
316
+ "service" type (Closes: #573551)
317
+
318
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Wed, 26 Jan 2011 16:10:56 +0100
319
+
320
+ puppet (2.6.3-1) experimental; urgency=low
321
+
322
+ [ Mathias Gug ]
323
+ * New upstream version.
324
+
325
+ [ Stig Sandbeck Mathisen ]
326
+ * debian/control: Adjust dependencies for puppet-testsuite, depend on
327
+ puppet-common instead of puppet and puppetmaster
328
+
329
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Tue, 23 Nov 2010 10:40:31 +0100
330
+
331
+ puppet (2.6.3-0ubuntu1) natty; urgency=low
332
+
333
+ * New upstream version.
334
+
335
+ -- Mathias Gug <mathiaz@ubuntu.com> Wed, 17 Nov 2010 13:30:18 -0500
336
+
337
+ puppet (2.6.3~rc3-0ubuntu1) natty; urgency=low
338
+
339
+ * New upstream version
340
+
341
+ -- Mathias Gug <mathiaz@ubuntu.com> Fri, 12 Nov 2010 09:29:36 -0500
342
+
343
+ puppet (2.6.3~rc2-0ubuntu1) natty; urgency=low
344
+
345
+ * New upstream version
346
+
347
+ -- Mathias Gug <mathiaz@ubuntu.com> Tue, 09 Nov 2010 17:47:53 -0500
348
+
349
+ puppet (2.6.3~rc1-0ubuntu1) natty; urgency=low
350
+
351
+ * New upstream version
352
+ * debian/control:
353
+ - move all puppet dependencies to puppet-common since all the code is
354
+ actually located in puppet-common.
355
+ - move libaugeas from a recommend to a dependency.
356
+
357
+ -- Mathias Gug <mathiaz@ubuntu.com> Thu, 21 Oct 2010 12:52:13 -0400
358
+
359
+ puppet (2.6.1-1) experimental; urgency=low
360
+
361
+ [ Mathias Gug ]
362
+ * New upstream version:
363
+ - Fix "Puppet standalone broken" (Closes: #594575)
364
+ * test/lib/puppettest/fakes.rb: Fix puppettest to use puppet system
365
+ library.
366
+ * debian/puppetmaster-passenger.postinst: Use cacrl instead of hostcrl to
367
+ set the location of the CRL in apache2 configuration. Fix apache2
368
+ configuration on upgrade as well (LP: #641001).
369
+ * debian/control:
370
+ - move all puppet dependencies to puppet-common since all the code is
371
+ actually located in puppet-common.
372
+ - move libaugeas from a recommend to a dependency.
373
+
374
+ [ Stig Sandbeck Mathisen ]
375
+ * Fix "require" path for puppet queue.
376
+ * Add dependency on "facter" for "puppet-common"
377
+ * Make sure the "puppet-common" package can be purged even when not fully
378
+ installed (Closes: #596163)
379
+
380
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Sat, 02 Oct 2010 12:14:37 +0200
381
+
382
+ puppet (2.6.1-0ubuntu2) maverick; urgency=low
383
+
384
+ * debian/puppetmaster-passenger.postinst: Use cacrl instead of hostcrl to
385
+ set the location of the CRL in apache2 configuration. Fix apache2
386
+ configuration on upgrade as well (LP: #641001).
387
+
388
+ -- Mathias Gug <mathiaz@ubuntu.com> Tue, 21 Sep 2010 13:53:10 -0400
389
+
390
+ puppet (2.6.1-0ubuntu1) maverick; urgency=low
391
+
392
+ [ Stig Sandbeck Mathisen ]
393
+ * Add dependency on "facter" for "puppet-common"
394
+ * Make sure the "puppet-common" package can be purged even when not fully
395
+ installed (Closes: #596163)
396
+
397
+ [ Mathias Gug ]
398
+ * New upstream version.
399
+
400
+ -- Mathias Gug <mathiaz@ubuntu.com> Tue, 14 Sep 2010 12:05:29 -0400
401
+
402
+ puppet (2.6.1~rc4-0ubuntu1) maverick; urgency=low
403
+
404
+ [ Mathias Gug ]
405
+ * New upstream version:
406
+ - Fix "Puppet standalone broken" (Closes: #594575)
407
+ * test/lib/puppettest/fakes.rb: Fix puppettest to use puppet system
408
+ library.
409
+
410
+ [ Stig Sandbeck Mathisen ]
411
+ * Fix "require" path for puppet queue.
412
+
413
+ -- Mathias Gug <mathiaz@ubuntu.com> Tue, 07 Sep 2010 10:44:22 -0400
414
+
415
+ puppet (2.6.1~rc3-1) experimental; urgency=low
416
+
417
+ [ Mathias Gug ]
418
+ * New upstream version:
419
+ - fix config.ru file to run puppetmaster as a rack application.
420
+ (Closes: #593557)
421
+ * Fix test suite to run from a package install rather then from the source
422
+ directory:
423
+ + Rakefile: use system puppet.rb file to detect version.
424
+ + spec/unit/application/apply_spec.rb: Fix test suite to use puppet
425
+ system library.
426
+ + spec/spec_helper.rb: disable gem.
427
+ * Fix init service provider to correctly check the status of services
428
+ using upstart jobs (Closes: #584481, LP: #551544).
429
+ * etckeeper integration (Closes: #571127)
430
+ [server-lucid-puppet-etckeeper-integration]:
431
+ + debian/etckeeper-commit-post, debian/etckeeper-commit-pre:
432
+ Call "etckeeper commit" before and after catalog runs.
433
+ Silently bail out if etckeeper is not available.
434
+ + debian/puppet.conf: Call out to the etckeeper hooks using
435
+ the prerun_command and postrun_command hooks.
436
+ + debian/rules: Install the etckeeper hook scripts in /etc/puppet.
437
+ + debian/README.Debian: add note about etckeeper integration.
438
+ + debian/control: the puppet package suggests etckeeper.
439
+ * Create puppetmaster-passenger package to automatically setup the
440
+ puppetmaster to be run under mod passenger and apache2:
441
+ - create new puppetmaster-common package to share files between
442
+ puppetmaster (ie webrick) and puppetmaster-passenger.
443
+ - move puppetqd to puppetmaster-common.
444
+ - debian/puppet.conf: enable ssl options so that the default configuration
445
+ works out of the box under passenger.
446
+ * debian/puppet-common.postinst: set permissions and ownership of puppet log
447
+ directory.
448
+ * Move puppetmaster's Recommends to Suggests.
449
+
450
+ [ Stig Sandbeck Mathisen ]
451
+ * Recommend lsb-release (Closes: #593606)
452
+ * Recommend debconf-utils (Closes: #593780)
453
+ * ext/puppetlast: removed from upstream
454
+ * Cherry-pick updated man pages from upstream
455
+
456
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Fri, 27 Aug 2010 14:32:00 +0200
457
+
458
+ puppet (2.6.0-2) unstable; urgency=low
459
+
460
+ * Bump Standards-Version to 3.9.1
461
+ * Release for unstable
462
+
463
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Wed, 28 Jul 2010 20:48:21 +0200
464
+
465
+ puppet (2.6.0-1) experimental; urgency=low
466
+
467
+ * New upstream version
468
+ * Fix "short package description doesn't differ from binary package
469
+ puppet", update description of binary package. (Closes: #587364)
470
+ * Move /usr/bin/puppet to the puppet-common package
471
+ * debian/control: Convert Conflicts: to Breaks:
472
+ * debian/control: bump policy version and update project homepage
473
+ * debian/control: Update dependencies/breakages
474
+ * debian/copyright: Remove reference to deprecated bsd license file,
475
+ it is included already
476
+ * move manpage puppet(8) to package puppet-common
477
+ * Debian fix: set correct header in puppet.conf(5)
478
+ * Add puppetqd(8) to the puppetmaster package
479
+
480
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Tue, 20 Jul 2010 09:37:22 +0200
481
+
482
+ puppet (0.25.5-1) unstable; urgency=low
483
+
484
+ [ Stig Sandbeck Mathisen ]
485
+ * New upstream version: 0.25.5
486
+ * Adjust conflicts for puppet-common, to ensure upgrade goes well
487
+
488
+ [ Mathias Gug ]
489
+ * Add /etc/puppet/templates and /etc/puppet/modules to the puppet-
490
+ common package (Closes: #571129)
491
+ * Add binary package "puppet-testsuite" (Closes: #584480)
492
+
493
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Fri, 25 Jun 2010 17:27:05 +0200
494
+
495
+ puppet (0.25.4-6) unstable; urgency=low
496
+
497
+ * clarify passenger options in default/puppetmaster
498
+ * add patch to ext/rack/files/apache2.conf for debian-specific settings
499
+ * debian/control: add version depends on librack-ruby
500
+ * additional start-stop-daemon fix for puppet.init and puppetqd.init
501
+ * debian/rules: actually install config.ru owned by the puppet user,
502
+ this is necessary for proper suid of passenger (closes: #577366)
503
+
504
+ -- Micah Anderson <micah@debian.org> Tue, 20 Apr 2010 16:06:38 -0400
505
+
506
+ puppet (0.25.4-5) unstable; urgency=low
507
+
508
+ * debian/puppetmaster.init: fix invocation of start-stop-daemon (closes:
509
+ * #578066)
510
+
511
+ -- Andrew Pollock <apollock@debian.org> Sat, 17 Apr 2010 20:33:09 -0700
512
+
513
+ puppet (0.25.4-4) unstable; urgency=low
514
+
515
+ [ Andrew Pollock ]
516
+ * debian/watch: update for new upstream location
517
+ * apply patch from Mathias Gug to add /etc/puppet to puppet-common's
518
+ directories so that it is removed on package purge (if empty). Also removes
519
+ /var/log/puppet on purge (closes: #571130)
520
+
521
+ [ Micah Anderson ]
522
+ * add Suggests: libselinux-ruby1.8 as puppet supports it, but only
523
+ if the library is present
524
+ * cherry-pick: add puppetmasterd dbconnections option to increase
525
+ the rails 'max pool size' (redmine: #2568)
526
+ * fix puppetqd initscript status operation
527
+
528
+ [ Andrew Pollock ]
529
+ * debian/rules: don't install config.ru owned by the puppet user (closes:
530
+ #577366)
531
+
532
+ -- Andrew Pollock <apollock@debian.org> Thu, 15 Apr 2010 21:18:32 -0700
533
+
534
+ puppet (0.25.4-3) unstable; urgency=low
535
+
536
+ [ Stig Sandbeck Mathisen ]
537
+ * Fix "puppetmaster and puppet scripts always return 0" with patch from
538
+ Mathias Gug, make sure return codes are actually used (Closes: #573473)
539
+
540
+ [ Micah Anderson ]
541
+ * Disable default puppet.conf option pluginsync=true, see puppet-common.NEWS
542
+ * Suggest in puppetmaster package: libapache2-mod-passenger, librack-ruby
543
+ * Create puppetmaster.README with information about the server type
544
+ * Provide an example apache2.conf for libapache2-mod-passenger
545
+ * Ship the rack config.ru, and README as README.rack
546
+ * Fix puppet-el.emacsen-startup script to be properly installed
547
+ * debian/puppetmaster.init: Fix init stop action to not fail if the
548
+ puppetmaster is already stopped, Thanks Mathias Gug (Closes: #574677)
549
+ * Add Suggests: stompserver/libstomp-ruby1.8 - needed for puppetqd
550
+ * Add README.queueing to puppetmaster package which describes puppetqd
551
+ * Add /etc/init.d/puppetqd and defaults in /etc/defaults/puppetmaster
552
+ * Switch to dpkg-source 3.0 (quilt) format
553
+
554
+ -- Micah Anderson <micah@debian.org> Tue, 16 Mar 2010 12:27:07 -0400
555
+
556
+ puppet (0.25.4-2) unstable; urgency=low
557
+
558
+ [ Stig Sandbeck Mathisen ]
559
+ * puppet: do not explicitly remove /var/lib/puppet on purge (Closes: #525852)
560
+ * upstream cherry-pick: Updated man pages and moved puppet.conf.8 to
561
+ puppet.conf.5 (Closes: #563567)
562
+ * Fix "Improper ownership of /var/lib/puppet/state", explicitly create this
563
+ in postinst (and remove in postrm on purge) (Closes: #462551)
564
+ * Fix "wrong default location for templates", update default settings, and
565
+ create puppet-common.NEWS with information (Closes: #484659)
566
+ * Move postinst and postrm handling of shared users and directories to
567
+ puppet-common (Closes: #570012)
568
+
569
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Tue, 16 Feb 2010 06:30:55 +0000
570
+
571
+ puppet (0.25.4-1) unstable; urgency=low
572
+
573
+ [Nigel Kersten ]
574
+ * New upstream version 0.25.4
575
+
576
+ [ Micah Anderson ]
577
+ * Fix debian/rules typo in install of puppet-mode-init.el
578
+ * Fix which package puppet-mode-init.el gets installed into
579
+ * Add Suggests for vim-puppet and puppet-el on binary packages
580
+
581
+ [ Stig Sandbeck Mathisen ]
582
+ * Update debian/copyright
583
+ * debian/{puppet,puppetmaster}.init: Add status argument, fix pid file
584
+ locations (Closes: #545975)
585
+ * Refactoring: Add binary packages for puppet-common, puppet-el, vim-puppet
586
+
587
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Mon, 01 Feb 2010 12:31:58 +0100
588
+
589
+ puppet (0.25.1-3) unstable; urgency=low
590
+
591
+ [ Nigel Kersten ]
592
+ * Require modification of /etc/default/puppet to start puppet client daemon.
593
+ (closes: #518831)
594
+ * cherry pick upstream fix for puppetrun with tags (closes: #559092)
595
+ * cherry pick upstream fix for supplementary groups not being reset.
596
+ (CVE-2009-3564) (closes: #551073)
597
+
598
+ [ Andrew Pollock ]
599
+ * debian/{puppet,puppetmaster}.pid: Correct the path to the pidfiles
600
+ (closes: #561231)
601
+ * debian/control: version the build dependency on facter (closes: #551055)
602
+
603
+ -- Andrew Pollock <apollock@debian.org> Wed, 16 Dec 2009 11:36:39 -0800
604
+
605
+ puppet (0.25.1-2) unstable; urgency=low
606
+
607
+ * Add puppetqd executable to puppetmaster package (closes: #554624)
608
+
609
+ -- Nigel Kersten <nigel@explanatorygap.net> Thu, 05 Nov 2009 11:23:10 -0800
610
+
611
+ puppet (0.25.1-1) unstable; urgency=low
612
+
613
+ * New upstream release of 0.25.1
614
+
615
+ -- Nigel Kersten <nigel@explanatorygap.net> Tue, 27 Oct 2009 10:35:40 -0700
616
+
617
+ puppet (0.25.0-1) unstable; urgency=low
618
+
619
+ * New upstream release
620
+ * Tweak .install files to cope with new use of sbindir from upstream.
621
+ * Add the new auth.conf config file to the puppetmaster package.
622
+
623
+ -- Nigel Kersten <nigel@explanatorygap.net> Sun, 16 Aug 2009 05:34:17 -0700
624
+
625
+ puppet (0.24.8-3) unstable; urgency=low
626
+
627
+ [ Micah Anderson ]
628
+ * Make logcheck ignore 'Reopening log files' on puppetmaster (Closes: #538721)
629
+
630
+ [ Nigel Kersten ]
631
+ * switch from unreleased to unstable.
632
+
633
+ -- Nigel Kersten <nigel@explanatorygap.net> Sun, 16 Aug 2009 05:33:53 -0700
634
+
635
+ puppet (0.24.8-2) unstable; urgency=high
636
+
637
+ [ Micah Anderson ]
638
+ * Cherry-pick upstream versioncmp fix (redmine:#2110)
639
+
640
+ [ Andrew Pollock ]
641
+ * Enable waiting for certificates for the default value (upstream default
642
+ that was previously disabled or enabled with a 5 second value)
643
+ * Re-ship the vim syntax file in the correct location (it fell out after the
644
+ 0.24.5-3 upload) (closes: #530752)
645
+ * Re-add the 0.24.5-3 changelog entry
646
+ * debian/puppet.postrm: don't delete the user or group (closes: #528068,
647
+ #527381)
648
+ * debian/puppet.{preinst,postinst}: Applied modified patch from Stig
649
+ Sandbeck Mathisen to call conditionally call adduser in the postinst, if
650
+ it's available
651
+
652
+ [ Nigel Kersten ]
653
+ * Switched to use install.rb, primarily to stop shebangs using /usr/bin/env
654
+ * Stopped using dh_movefiles, moved to dh_install
655
+ * debian/rules greatly cleaned up due to above two changes
656
+
657
+ [ Andrew Pollock ]
658
+ * debian/control: add rdoc, libopenssl-ruby and facter to build dependencies
659
+ * debian/control: depend on ruby1.8 instead of ruby to placate Lintian
660
+ * debian/puppet.install: brown paper bag release averted; install
661
+ /usr/lib/ruby/1.8
662
+ * debian/rules: ensure permissions on everything under /usr/lib/ruby/1.8 is
663
+ correct
664
+
665
+ -- Andrew Pollock <apollock@debian.org> Tue, 16 Jun 2009 23:37:22 -0700
666
+
667
+ puppet (0.24.8-1) unstable; urgency=low
668
+
669
+ * New upstream release
670
+ * debian/control: Add Nigel Kersten and myself as uploaders
671
+ * debian/changelog: wrap long lines
672
+ * debian/watch: ignore release candidates
673
+ * debian/compat: bump to 5
674
+ * debian/control: bump Standards-Version (no changes)
675
+
676
+ -- Andrew Pollock <apollock@debian.org> Mon, 13 Apr 2009 17:12:47 -0700
677
+
678
+ puppet (0.24.7-2) experimental; urgency=low
679
+
680
+ * make puppetmaster conflict previous puppet due to man page move
681
+
682
+ -- Micah Anderson <micah@debian.org> Wed, 28 Jan 2009 10:28:23 -0500
683
+
684
+ puppet (0.24.7-1) experimental; urgency=low
685
+
686
+ * New upstream release
687
+ * Fixed comment in defaults/puppetmaster (Closes: #510881)
688
+ * Fixed debian/puppetmaster.manpages and debian/puppet.manpages to
689
+ distribute
690
+ puppetrun and puppetca correctly, thanks Savvas Radevic (Closes: #511826)
691
+ * Added puppetmaster Recommends: libldap-ruby1.8 to silence puppetrun
692
+ (Closes: #512639)
693
+ * Added puppet Recommends: libaugeas-ruby1.8 for new Augeas support in this
694
+ release
695
+
696
+ -- Micah Anderson <micah@debian.org> Fri, 23 Jan 2009 09:27:09 -0500
697
+
698
+ puppet (0.24.6-1) experimental; urgency=low
699
+
700
+ * New upstream release (Closes: #506129, #504624, #502163)
701
+ * Distribute filebucket binary (Closes: #499999)
702
+ * Fix missing check for START variable in defaults files (Closes: #498284)
703
+ * Fix maintainer scripts so that they do not ignore errors (set -e)
704
+ * Fix maintainer scripts so they don't have prepended paths (thanks lintian)
705
+ * Cherry-pick fixes from upstream:
706
+ - comparison of String with 0 failed (Closes: #500848)
707
+ - filename cannot handle ++ (Closes: #502163)
708
+ - tidy must specify size, age or both (Closes: #500852)
709
+
710
+ -- Micah Anderson <micah@debian.org> Sat, 29 Nov 2008 13:59:25 -0500
711
+
712
+ puppet (0.24.5-3) unstable; urgency=medium
713
+
714
+ * Set wait for cert timeout to 5 secs, to avoid resource abuse (Closes:
715
+ #509566)
716
+ * Distribute filebucket binary (Closes: #499999)
717
+ * Place vim syntax in the correct location (LP: #181960)
718
+
719
+ -- Thom May <thom@debian.org> Wed, 07 Jan 2009 15:15:34 -0500
720
+
721
+ puppet (0.24.5-2) unstable; urgency=low
722
+
723
+ * Fix puppetlast to work with 0.24.5
724
+ * Adjust logcheck to match against new log messages in 0.24.5
725
+ * Update standards version to 3.8.0 (no changes)
726
+ * Update changelog to reduce length of line to make lintian happy
727
+
728
+ -- Micah Anderson <micah@debian.org> Sat, 26 Jul 2008 15:43:45 -0400
729
+
730
+ puppet (0.24.5-1) unstable; urgency=low
731
+
732
+ * New upstream release
733
+ * Applied patch from Martin Krafft to improve logcheck file installation
734
+
735
+ -- Thom May <thom@debian.org> Thu, 24 Jul 2008 10:58:08 +0100
736
+
737
+ puppet (0.24.4-8) unstable; urgency=low
738
+
739
+ * Changed the default port value to 8140 in /etc/default/puppetmaster
740
+ to be consistent with the client default port. (Closes: #483823)
741
+ * Cherry-picked various bug fixes from upstream:
742
+ - further emacs mode updates from Russ Allbery
743
+ - misleading error if CA private key can not be decrypted (trac:#1271)
744
+ - fix missing bracket in documentation (trac:#1209)
745
+ - man pages updates (trac:#1211)
746
+ - add dump parameter to mount type (trac:#1212)
747
+ - fixed undefined variable in lib/puppet/util/settings.rb (trac:#1218)
748
+ - usermod problem on Solaris (trac:#1207)
749
+ - added native authorized_keys type
750
+ - test within a template if a variable or fact is defined (trac:#1177)
751
+ - Fixed Red Hat service disabling (trac:#1219)
752
+ - fix crontab provider parse error when line begins w/space (trac:#1216)
753
+ - Fix for latest method in rpm provider (trac:#1224)
754
+ - puppetd documentation updates (trac:#1227)
755
+ - Modified the 'factpath' setting to automatically configure Facter
756
+ to load facts there if a new enough version of Facter is used.
757
+ - Removing unused file lib/puppet/util/variables.rb (trac:#1229)
758
+ - Fixing transaction support for prefetching generated resources.
759
+ Previously, we prefetched then generated, which caused generated
760
+ resources that needed prefetching not to work. This just reorders
761
+ the calls, so generated resources now get prefetched.
762
+ - Respect "replace => false" for symlinks (trac:#1235)
763
+ - Added cron random function fixing ticket (trac:#311)
764
+ - No more clear_cache failures (trac:#1247)
765
+ - Fixed Rakefile to install non-.rb files (trac:#1266)
766
+
767
+ -- Micah Anderson <micah@debian.org> Sat, 31 May 2008 11:39:47 -0400
768
+
769
+ puppet (0.24.4-7) unstable; urgency=low
770
+
771
+ * Update emacs-mode with changes cherry-picked from rra's repository
772
+ * Fix typo in puppetmaster.init (Closes: #480019)
773
+ * Fix variable name in /etc/default/puppetmaster comments
774
+ * Fix incorrect port increment in puppetmaster initscript when mongrel
775
+ is used, thanks Francois Deppierraz (Closes: #480263)
776
+ * Add puppetmaster.postrm to remove /var/log/puppet on purge
777
+ * Added debian/puppetmaster.dirs containing etc/puppet/manifests
778
+ * Remove puppet group on purge (Closes: #481511)
779
+ * Remove old config files and stray directories (Closes: #454681)
780
+
781
+ -- Micah Anderson <micah@debian.org>> Sat, 03 May 2008 16:18:32 -0400
782
+
783
+ puppet (0.24.4-6) unstable; urgency=low
784
+
785
+ * Remove bashisms in puppetmaster.init
786
+ * Add puppetlast script
787
+
788
+ -- Micah Anderson <micah@debian.org>> Wed, 30 Apr 2008 07:37:04 -0400
789
+
790
+ puppet (0.24.4-5) unstable; urgency=low
791
+
792
+ * Fix missing --pidfile piece for mongrel startup and make
793
+ stop consistent, thanks Bart Cortooms (Closes: #476840)
794
+ * Add trailing newline missing from default files
795
+
796
+ -- Micah Anderson <micah@debian.org> Sat, 19 Apr 2008 11:03:35 -0400
797
+
798
+ puppet (0.24.4-4) unstable; urgency=low
799
+
800
+ * Create /etc/default/puppet and /etc/default/puppetmaster
801
+ * Modify /etc/init.d/puppetmaster to support mongrel instances
802
+ on multiple ports
803
+ * Remove no longer necessary .svn cleaning from debian/rules
804
+ * Added $network and $named appropriated places in the LSB
805
+ headers in puppet and puppetmaster initscripts,
806
+ thanks Sam Quigley
807
+ * Install ralsh (Closes: #476629)
808
+ * Cherry-pick upstream patches from 0.24.x branch:
809
+ - Install manpages
810
+ - Fix shebang issues (#1148)
811
+ - Updated fix for (#1020)
812
+ - Fix for (#1174)
813
+ - Emacs mode updates (#1160)
814
+ - Debian service [en|dis]able issue (#1161)
815
+ - User type group list validation enhancement
816
+ - Fix configtimeout issue (#1176)
817
+
818
+ -- Micah Anderson <micah@debian.org> Sun, 13 Apr 2008 19:18:46 -0400
819
+
820
+ puppet (0.24.4-3) unstable; urgency=low
821
+
822
+ * Remove pi binary, puppetdoc provides this functionality now
823
+ (Closes: #472850)
824
+
825
+ -- Micah Anderson <micah@debian.org> Fri, 28 Mar 2008 12:38:30 -0400
826
+
827
+ puppet (0.24.4-2) unstable; urgency=low
828
+
829
+ * Fix duplicate man8/puppetmasterd.8 install
830
+
831
+ -- Micah Anderson <micah@debian.org> Tue, 25 Mar 2008 22:58:22 -0400
832
+
833
+ puppet (0.24.4-1) unstable; urgency=low
834
+
835
+ * New upstream release
836
+ * Install man pages missing from upstream release
837
+
838
+ -- Micah Anderson <micah@debian.org> Tue, 25 Mar 2008 18:17:02 -0400
839
+
840
+ puppet (0.24.3-1) unstable; urgency=low
841
+
842
+ [ Micah Anderson]
843
+ * New upstream release
844
+ * Install man pages (Closes: #385529)
845
+ * Apply lsb formatted dependency info into initscripts, thanks
846
+ Petter Reinholdtsen (Closes: #462915)
847
+ * Install more robust puppet-mode.el
848
+ * Add factpath and pluginsync=true to the default puppet.conf so that
849
+ facts added through pluginsync are loaded by puppet
850
+ * Add [plugins] section to fileserver.conf
851
+ * Updated outdated debian/control substrvar for puppet to ${source:Version}
852
+ * Updated link in debian/copyright for new URL to license
853
+ * Updated copyright in debian/copyright
854
+ * Bumped standards version to 3.7.3.0 (no changes)
855
+ * Switch debhelper from Build-Depends-Indep to Build-Depends because it is
856
+ required to run clean target (lintian check:
857
+ clean-should-be-satisfied-by-build-depends)
858
+ * Moved homepage from Description to control field
859
+ * Added Vcs-Browser and Vcs-Git fields to debian/control
860
+ [ Thom May ]
861
+ * If puppet can't start, continue with package install
862
+
863
+ -- Micah Anderson <micah@debian.org> Sun, 09 Mar 2008 14:03:00 -0400
864
+
865
+ puppet (0.24.1-2) unstable; urgency=low
866
+
867
+ * Set rundir correctly (Closes: #460203, #459579)
868
+ * Apply patch for puppet#1003 to enable collection of tagged resources
869
+
870
+ -- Thom May <thom@debian.org> Wed, 16 Jan 2008 11:08:55 +0100
871
+
872
+ puppet (0.24.1-1) unstable; urgency=low
873
+
874
+ * New upstream release (Closes: #445626)
875
+ * Set maintainer to pkg-puppet-devel
876
+
877
+ -- Thom May <thom@debian.org> Sun, 30 Dec 2007 19:13:47 +0100
878
+
879
+ puppet (0.24.0-1) unstable; urgency=low
880
+
881
+ * New upstream release
882
+
883
+ -- Thom May <thom@debian.org> Wed, 19 Dec 2007 16:00:34 +0100
884
+
885
+ puppet (0.23.2-15) unstable; urgency=low
886
+
887
+ * No change upload setting maintainer to me whilst waiting for an alioth
888
+ project.
889
+
890
+ -- Thom May <thom@debian.org> Thu, 29 Nov 2007 10:44:50 +0100
891
+
892
+ puppet (0.23.2-14) unstable; urgency=low
893
+
894
+ * Orphaning.
895
+ * Create /var/lib/puppet in the puppet package. Closes: #452506.
896
+ * Start the puppet init script after puppetmaster, to silence whiny bug
897
+ reports. Closes: #452064.
898
+ * Add a reload command to the Puppet init script. Closes: #452060.
899
+
900
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 29 Nov 2007 10:48:21 +1100
901
+
902
+ puppet (0.23.2-13) unstable; urgency=low
903
+
904
+ * Drop quotes from an already-quoted value in a query. Closes: #448179.
905
+ * Remove excessive quoting from puppet/network/handler/master.rb.
906
+ Closes: #448221.
907
+ * Force removal of directories during pluginsync. Closes: #448180.
908
+
909
+ -- Matthew Palmer <mpalmer@debian.org> Tue, 30 Oct 2007 14:55:19 +1100
910
+
911
+ puppet (0.23.2-12) unstable; urgency=low
912
+
913
+ * Create /var/run/puppet and set the perms in the various initscripts, as
914
+ well as hardcoding the rundir better in configuration.rb and removing
915
+ the explicit rundir setting from puppet.conf. Closes: #447314.
916
+ * Apply additional patch given (backwards) to fix export/collect on some
917
+ database backends. Closes: #445591 (again!)
918
+
919
+ -- Matthew Palmer <mpalmer@debian.org> Sat, 20 Oct 2007 11:28:50 +1000
920
+
921
+ puppet (0.23.2-11) unstable; urgency=low
922
+
923
+ * Apply patch from puppet#786 to fix a problem with exported resources not
924
+ being properly detected as needing a rerun. Closes: #445591.
925
+ * Fix ignore handling for the plugins mount. Closes: #446390.
926
+
927
+ -- Matthew Palmer <mpalmer@debian.org> Mon, 15 Oct 2007 09:11:25 +1000
928
+
929
+ puppet (0.23.2-10) unstable; urgency=low
930
+
931
+ * Recycle connections when we change (or get) certs.
932
+ * Catch and retry more transient errors in the XMLRPC wrapper.
933
+
934
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 27 Sep 2007 15:06:11 +1000
935
+
936
+ puppet (0.23.2-9) unstable; urgency=low
937
+
938
+ * Recycle the HTTP connection if we get an EPIPE during a request.
939
+ Closes: #444177. Thanks to Jos Backus for helping with testing.
940
+
941
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 27 Sep 2007 09:55:34 +1000
942
+
943
+ puppet (0.23.2-8) unstable; urgency=low
944
+
945
+ * Remove extraneous debugging output accidentally left behind in the last
946
+ release.
947
+ * Fix spelling mistakes in debian/control and debian/puppet.preinst.
948
+ Closes: #444158.
949
+
950
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 27 Sep 2007 07:45:07 +1000
951
+
952
+ puppet (0.23.2-7) unstable; urgency=low
953
+
954
+ * Ignore ENOENT errors in the module plugin syncing code, since they're
955
+ innocuous and expected.
956
+ * Allow facts that are downloaded through pluginsync to be used like any
957
+ other fact.
958
+ * Allow users to still have an old-style plugins mount if they want, by
959
+ specifying a path for the mount. Also track down a fault in old-style
960
+ fileserving which did strange slash-stripping. Closes: #443932.
961
+
962
+ -- Matthew Palmer <mpalmer@debian.org> Tue, 25 Sep 2007 16:41:32 +1000
963
+
964
+ puppet (0.23.2-6) unstable; urgency=low
965
+
966
+ * Patch rails/param_name.rb to stop query failures, as per puppet#784.
967
+ * Actually honour namevar.
968
+ * Only set dbuser if explicitly asked for.
969
+ * Fix annoying database deletion error for ParamValue objects.
970
+ * Add an accessor for ca_file, since older openssl-ruby only had a writer.
971
+ * Fix the fileserver to honour ignore. Thanks to Nathan Ward for the
972
+ bug report on IRC.
973
+
974
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 20 Sep 2007 16:10:41 +1000
975
+
976
+ puppet (0.23.2-5) unstable; urgency=low
977
+
978
+ * Add some NEWS for the ssldir transition. Should have done that earlier.
979
+ * Remove the explicit mode change for vardir, and fix up the mode on
980
+ statedir, as well. Closes: #425496.
981
+ * Only set some database parameters if they're explicitly set; this makes
982
+ life easier for PgSQL ident auth.
983
+ * Allow empty config options.
984
+
985
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 13 Sep 2007 11:09:59 +1000
986
+
987
+ puppet (0.23.2-4) unstable; urgency=low
988
+
989
+ * Fix puppet#776 in a slightly better way by only flushing the cache when
990
+ a value is changed, rather than whenever a value is read.
991
+ * Apply patch from puppet#755 to cache connections to the Puppetmaster,
992
+ which improves performance by more than a little.
993
+ * Modify the fileserver so that it provides a 'plugins' mount which
994
+ exports the union of the plugins directory of all modules.
995
+
996
+ -- Matthew Palmer <mpalmer@debian.org> Fri, 31 Aug 2007 15:32:04 +1000
997
+
998
+ puppet (0.23.2-3) unstable; urgency=low
999
+
1000
+ * Clear the config value cache every time. This is a titchy little
1001
+ performance hit, but it works around puppet#776 rather nicely.
1002
+
1003
+ -- Matthew Palmer <mpalmer@debian.org> Fri, 24 Aug 2007 16:08:04 +1000
1004
+
1005
+ puppet (0.23.2-2) unstable; urgency=low
1006
+
1007
+ * Move the SSL state directory to a more policy-friendly location,
1008
+ /var/lib/puppet/ssl.
1009
+
1010
+ -- Matthew Palmer <mpalmer@debian.org> Tue, 21 Aug 2007 12:54:40 +1000
1011
+
1012
+ puppet (0.23.2-1) unstable; urgency=low
1013
+
1014
+ * New upstream release.
1015
+
1016
+ -- Matthew Palmer <mpalmer@debian.org> Tue, 7 Aug 2007 12:47:49 +1000
1017
+
1018
+ puppet (0.23.1-1) unstable; urgency=low
1019
+
1020
+ * New upstream release.
1021
+ * Switch primary maintainer to me. Thanks jaq.
1022
+ * Make the recommendation for rails >= 1.2.3-2, to avoid
1023
+ incompatibilities. This breaks compatibility with stable, but the rails
1024
+ package from unstable should install cleanly in stable. Closes: #433999
1025
+
1026
+ -- Matthew Palmer <mpalmer@debian.org> Sat, 21 Jul 2007 16:34:36 +1000
1027
+
1028
+ puppet (0.23.0-1) unstable; urgency=low
1029
+
1030
+ * New upstream release.
1031
+ - Includes a new configuration file handling system; see NEWS.Debian.
1032
+
1033
+ -- Matthew Palmer <mpalmer@debian.org> Mon, 25 Jun 2007 09:55:12 +1000
1034
+
1035
+ puppet (0.22.4-2) unstable; urgency=low
1036
+
1037
+ * Depend on libshadow-ruby1.8, for new password modification functionality
1038
+ added to upstream 0.22.4.
1039
+ * Several improvements from Micah Anderson:
1040
+ - Better vim syntax installation process.
1041
+ - Install Emacs syntax highlighting.
1042
+ - Install logcheck rules. Closes: #421851.
1043
+
1044
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 3 May 2007 15:04:15 +1000
1045
+
1046
+ puppet (0.22.4-1) unstable; urgency=low
1047
+
1048
+ * New upstream release.
1049
+
1050
+ -- Matthew Palmer <mpalmer@debian.org> Wed, 2 May 2007 12:20:15 +1000
1051
+
1052
+ puppet (0.22.3-1) unstable; urgency=low
1053
+
1054
+ * New upstream release. Closes: #415773.
1055
+ * Switch to using our own logrotate config, and enhance it as per
1056
+ David Schmitt's suggestions. Closes: #414282.
1057
+ * Add puppetrun to the puppetmaster package, and actually put puppetdoc
1058
+ into the puppet package. Closes: #419273.
1059
+ * Copy vim syntax highlighting file into the puppet package, and add a
1060
+ stanza to have Vim automatically highlight .pp files. Closes: #412868.
1061
+ Thanks to David Schmitt for researching how to do all of that.
1062
+ * Add a templatedir setting to the default puppetmasterd.conf to make it
1063
+ obvious that it can be changed. Closes: #407506.
1064
+
1065
+ -- Matthew Palmer <mpalmer@debian.org> Wed, 18 Apr 2007 14:03:33 +1000
1066
+
1067
+ puppet (0.22.1-1) unstable; urgency=low
1068
+
1069
+ * New upstream release.
1070
+
1071
+ -- Matthew Palmer <mpalmer@debian.org> Fri, 2 Feb 2007 09:06:46 +1100
1072
+
1073
+ puppet (0.22.0-1) unstable; urgency=low
1074
+
1075
+ * New upstream release.
1076
+ * Use --startas instead of --init in init scripts, which (according to
1077
+ Paul Hampson) makes checking for already-running instances work.
1078
+ Closes: #405912.
1079
+
1080
+ -- Matthew Palmer <mpalmer@debian.org> Mon, 8 Jan 2007 08:41:35 +1100
1081
+
1082
+ puppet (0.20.1-1) unstable; urgency=low
1083
+
1084
+ * New upstream release. (Closes: #387674)
1085
+ * Rationalise the puppetmasterd init script.
1086
+ * Add inclusion of /etc/default files for init scripts. (Closes: #388178)
1087
+ * Add puppet.conf to match puppetd.conf. (Closes: #385646)
1088
+
1089
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 30 Nov 2006 10:54:19 +1100
1090
+
1091
+ puppet (0.18.4-1) unstable; urgency=low
1092
+
1093
+ * New upstream release.
1094
+ - Properly detect all services, including those in rcS.d.
1095
+ (Closes: #378351)
1096
+ * Add Homepage: to the long description. (Closes: #377896)
1097
+
1098
+ -- Matthew Palmer <mpalmer@debian.org> Mon, 24 Jul 2006 19:46:06 +1000
1099
+
1100
+ puppet (0.18.3-1) unstable; urgency=low
1101
+
1102
+ * New upstream version.
1103
+ - Set DEBIAN_FRONTEND=noninteractive when installing Debian packages.
1104
+ (Closes: #378338)
1105
+
1106
+ -- Matthew Palmer <mpalmer@debian.org> Sun, 16 Jul 2006 10:58:50 +1000
1107
+
1108
+ puppet (0.18.1-1) unstable; urgency=low
1109
+
1110
+ * Make Puppet not wait for a cert at all (to prevent startup hangs).
1111
+ * Cleanup the init scripts to not have NO_START detritus.
1112
+ * Apply puppet.debian-frontend, to set DEBIAN_FRONTEND=noninteractive on
1113
+ package installation.
1114
+
1115
+ -- Matthew Palmer <mpalmer@debian.org> Tue, 27 Jun 2006 15:05:32 +1000
1116
+
1117
+ puppet (0.18.0-1) unstable; urgency=low
1118
+
1119
+ * Initial release. (Closes: #348625)
1120
+
1121
+ -- Matthew Palmer <mpalmer@debian.org> Wed, 24 May 2006 13:10:01 +1000
1122
+