puppet 6.22.1 → 6.25.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (415) hide show
  1. checksums.yaml +4 -4
  2. data/CONTRIBUTING.md +5 -5
  3. data/Gemfile +2 -2
  4. data/Gemfile.lock +20 -20
  5. data/README.md +4 -4
  6. data/{ext → examples/enc}/regexp_nodes/classes/databases +0 -0
  7. data/{ext → examples/enc}/regexp_nodes/classes/webservers +0 -0
  8. data/{ext → examples/enc}/regexp_nodes/environment/development +0 -0
  9. data/{ext → examples/enc}/regexp_nodes/parameters/service/prod +0 -0
  10. data/{ext → examples/enc}/regexp_nodes/parameters/service/qa +0 -0
  11. data/{ext → examples/enc}/regexp_nodes/parameters/service/sandbox +0 -0
  12. data/{ext → examples/enc}/regexp_nodes/regexp_nodes.rb +0 -0
  13. data/{ext → examples}/nagios/check_puppet.rb +2 -2
  14. data/ext/README.md +13 -0
  15. data/ext/osx/puppet.plist +2 -0
  16. data/ext/project_data.yaml +1 -0
  17. data/lib/puppet/application/agent.rb +16 -5
  18. data/lib/puppet/application/apply.rb +22 -3
  19. data/lib/puppet/application/device.rb +2 -1
  20. data/lib/puppet/application/filebucket.rb +1 -0
  21. data/lib/puppet/application/resource.rb +32 -16
  22. data/lib/puppet/application/script.rb +2 -1
  23. data/lib/puppet/application/ssl.rb +1 -0
  24. data/lib/puppet/concurrent/thread_local_singleton.rb +1 -0
  25. data/lib/puppet/configurer/downloader.rb +2 -1
  26. data/lib/puppet/configurer.rb +144 -56
  27. data/lib/puppet/confine/variable.rb +1 -1
  28. data/lib/puppet/defaults.rb +47 -33
  29. data/lib/puppet/environments.rb +75 -25
  30. data/lib/puppet/face/facts.rb +1 -1
  31. data/lib/puppet/face/help/action.erb +1 -0
  32. data/lib/puppet/face/help/face.erb +1 -0
  33. data/lib/puppet/face/node/clean.rb +11 -0
  34. data/lib/puppet/facter_impl.rb +96 -0
  35. data/lib/puppet/file_serving/configuration/parser.rb +2 -0
  36. data/lib/puppet/file_serving/configuration.rb +3 -0
  37. data/lib/puppet/file_serving/fileset.rb +14 -2
  38. data/lib/puppet/file_serving/mount/file.rb +4 -4
  39. data/lib/puppet/file_serving/mount/scripts.rb +24 -0
  40. data/lib/puppet/file_system/file_impl.rb +3 -1
  41. data/lib/puppet/file_system/windows.rb +2 -2
  42. data/lib/puppet/forge.rb +4 -4
  43. data/lib/puppet/functions/all.rb +1 -1
  44. data/lib/puppet/functions/camelcase.rb +1 -1
  45. data/lib/puppet/functions/capitalize.rb +2 -2
  46. data/lib/puppet/functions/downcase.rb +2 -2
  47. data/lib/puppet/functions/empty.rb +8 -0
  48. data/lib/puppet/functions/find_template.rb +2 -2
  49. data/lib/puppet/functions/get.rb +5 -5
  50. data/lib/puppet/functions/group_by.rb +13 -5
  51. data/lib/puppet/functions/lest.rb +1 -1
  52. data/lib/puppet/functions/new.rb +100 -100
  53. data/lib/puppet/functions/partition.rb +4 -4
  54. data/lib/puppet/functions/require.rb +5 -5
  55. data/lib/puppet/functions/sort.rb +3 -3
  56. data/lib/puppet/functions/strftime.rb +1 -0
  57. data/lib/puppet/functions/tree_each.rb +7 -9
  58. data/lib/puppet/functions/type.rb +4 -4
  59. data/lib/puppet/functions/unwrap.rb +17 -2
  60. data/lib/puppet/functions/upcase.rb +2 -2
  61. data/lib/puppet/http/client.rb +1 -1
  62. data/lib/puppet/http/redirector.rb +5 -0
  63. data/lib/puppet/http/resolver/server_list.rb +15 -4
  64. data/lib/puppet/http/service/compiler.rb +75 -1
  65. data/lib/puppet/http/service/file_server.rb +2 -1
  66. data/lib/puppet/indirector/catalog/compiler.rb +25 -6
  67. data/lib/puppet/indirector/catalog/rest.rb +1 -0
  68. data/lib/puppet/indirector/facts/facter.rb +6 -6
  69. data/lib/puppet/indirector/file_metadata/rest.rb +1 -0
  70. data/lib/puppet/indirector/indirection.rb +1 -1
  71. data/lib/puppet/indirector/resource/ral.rb +6 -1
  72. data/lib/puppet/indirector/terminus.rb +4 -0
  73. data/lib/puppet/interface/documentation.rb +1 -0
  74. data/lib/puppet/module/plan.rb +0 -1
  75. data/lib/puppet/module/task.rb +1 -1
  76. data/lib/puppet/module.rb +1 -0
  77. data/lib/puppet/module_tool/applications/installer.rb +12 -4
  78. data/lib/puppet/module_tool/applications/uninstaller.rb +1 -1
  79. data/lib/puppet/module_tool/applications/upgrader.rb +1 -1
  80. data/lib/puppet/module_tool/errors/shared.rb +17 -0
  81. data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
  82. data/lib/puppet/node/environment.rb +10 -11
  83. data/lib/puppet/pal/pal_impl.rb +1 -1
  84. data/lib/puppet/parser/functions/fqdn_rand.rb +14 -6
  85. data/lib/puppet/parser/resource.rb +1 -1
  86. data/lib/puppet/parser/scope.rb +1 -0
  87. data/lib/puppet/parser/templatewrapper.rb +1 -0
  88. data/lib/puppet/pops/evaluator/closure.rb +7 -5
  89. data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +1 -0
  90. data/lib/puppet/pops/lookup/lookup_adapter.rb +3 -2
  91. data/lib/puppet/pops/model/ast.rb +1 -0
  92. data/lib/puppet/pops/model/factory.rb +2 -1
  93. data/lib/puppet/pops/parser/eparser.rb +201 -201
  94. data/lib/puppet/pops/parser/lexer2.rb +92 -91
  95. data/lib/puppet/pops/parser/slurp_support.rb +1 -0
  96. data/lib/puppet/pops/serialization/to_data_converter.rb +18 -6
  97. data/lib/puppet/pops/serialization/to_stringified_converter.rb +1 -1
  98. data/lib/puppet/pops/types/p_sem_ver_type.rb +8 -2
  99. data/lib/puppet/pops/types/p_sensitive_type.rb +10 -0
  100. data/lib/puppet/pops/types/type_formatter.rb +4 -3
  101. data/lib/puppet/pops/types/type_mismatch_describer.rb +1 -1
  102. data/lib/puppet/pops/types/types.rb +1 -1
  103. data/lib/puppet/provider/aix_object.rb +1 -1
  104. data/lib/puppet/provider/exec/posix.rb +16 -4
  105. data/lib/puppet/provider/group/groupadd.rb +5 -2
  106. data/lib/puppet/provider/package/nim.rb +11 -6
  107. data/lib/puppet/provider/package/pip.rb +15 -3
  108. data/lib/puppet/provider/package/pkg.rb +19 -2
  109. data/lib/puppet/provider/package/puppetserver_gem.rb +1 -1
  110. data/lib/puppet/provider/package/yum.rb +1 -1
  111. data/lib/puppet/provider/parsedfile.rb +3 -0
  112. data/lib/puppet/provider/service/base.rb +1 -1
  113. data/lib/puppet/provider/service/init.rb +5 -5
  114. data/lib/puppet/provider/service/launchd.rb +2 -2
  115. data/lib/puppet/provider/service/redhat.rb +1 -1
  116. data/lib/puppet/provider/service/smf.rb +3 -3
  117. data/lib/puppet/provider/service/systemd.rb +15 -5
  118. data/lib/puppet/provider/service/upstart.rb +5 -5
  119. data/lib/puppet/provider/service/windows.rb +38 -0
  120. data/lib/puppet/provider/user/aix.rb +44 -1
  121. data/lib/puppet/provider/user/directoryservice.rb +26 -13
  122. data/lib/puppet/provider/user/useradd.rb +72 -16
  123. data/lib/puppet/provider.rb +1 -1
  124. data/lib/puppet/reference/configuration.rb +1 -1
  125. data/lib/puppet/reference/providers.rb +2 -2
  126. data/lib/puppet/resource/catalog.rb +1 -1
  127. data/lib/puppet/resource/type_collection.rb +1 -0
  128. data/lib/puppet/resource.rb +38 -5
  129. data/lib/puppet/runtime.rb +11 -1
  130. data/lib/puppet/settings.rb +32 -9
  131. data/lib/puppet/test/test_helper.rb +4 -1
  132. data/lib/puppet/transaction/additional_resource_generator.rb +1 -1
  133. data/lib/puppet/transaction/persistence.rb +11 -1
  134. data/lib/puppet/transaction/report.rb +15 -1
  135. data/lib/puppet/type/exec.rb +35 -5
  136. data/lib/puppet/type/file/mode.rb +6 -0
  137. data/lib/puppet/type/file/selcontext.rb +1 -1
  138. data/lib/puppet/type/file.rb +25 -7
  139. data/lib/puppet/type/filebucket.rb +3 -3
  140. data/lib/puppet/type/group.rb +0 -1
  141. data/lib/puppet/type/resources.rb +1 -1
  142. data/lib/puppet/type/service.rb +26 -41
  143. data/lib/puppet/type/tidy.rb +22 -3
  144. data/lib/puppet/type/user.rb +38 -21
  145. data/lib/puppet/type.rb +1 -1
  146. data/lib/puppet/util/command_line.rb +1 -1
  147. data/lib/puppet/util/filetype.rb +2 -2
  148. data/lib/puppet/util/json.rb +3 -0
  149. data/lib/puppet/util/log.rb +1 -2
  150. data/lib/puppet/util/logging.rb +1 -25
  151. data/lib/puppet/util/pidlock.rb +1 -1
  152. data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +1 -1
  153. data/lib/puppet/util/selinux.rb +30 -4
  154. data/lib/puppet/util/suidmanager.rb +1 -2
  155. data/lib/puppet/util/symbolic_file_mode.rb +29 -17
  156. data/lib/puppet/util/tagging.rb +1 -0
  157. data/lib/puppet/util/windows/service.rb +0 -5
  158. data/lib/puppet/util/windows/sid.rb +3 -1
  159. data/lib/puppet/util/windows/user.rb +0 -2
  160. data/lib/puppet/util/windows.rb +3 -0
  161. data/lib/puppet/util.rb +4 -3
  162. data/lib/puppet/version.rb +1 -1
  163. data/lib/puppet.rb +5 -9
  164. data/locales/puppet.pot +408 -364
  165. data/man/man5/puppet.conf.5 +303 -275
  166. data/man/man8/puppet-agent.8 +4 -1
  167. data/man/man8/puppet-apply.8 +1 -1
  168. data/man/man8/puppet-catalog.8 +9 -9
  169. data/man/man8/puppet-config.8 +1 -1
  170. data/man/man8/puppet-describe.8 +1 -1
  171. data/man/man8/puppet-device.8 +1 -1
  172. data/man/man8/puppet-doc.8 +1 -1
  173. data/man/man8/puppet-epp.8 +1 -1
  174. data/man/man8/puppet-facts.8 +8 -8
  175. data/man/man8/puppet-filebucket.8 +1 -1
  176. data/man/man8/puppet-generate.8 +1 -1
  177. data/man/man8/puppet-help.8 +1 -1
  178. data/man/man8/puppet-key.8 +7 -7
  179. data/man/man8/puppet-lookup.8 +1 -1
  180. data/man/man8/puppet-man.8 +1 -1
  181. data/man/man8/puppet-module.8 +3 -3
  182. data/man/man8/puppet-node.8 +5 -5
  183. data/man/man8/puppet-parser.8 +1 -1
  184. data/man/man8/puppet-plugin.8 +1 -1
  185. data/man/man8/puppet-report.8 +5 -5
  186. data/man/man8/puppet-resource.8 +1 -1
  187. data/man/man8/puppet-script.8 +1 -1
  188. data/man/man8/puppet-ssl.8 +1 -1
  189. data/man/man8/puppet-status.8 +4 -4
  190. data/man/man8/puppet.8 +2 -2
  191. data/spec/fixtures/integration/application/agent/cached_deferred_catalog.json +2 -1
  192. data/spec/fixtures/integration/application/agent/lib/facter/agent_spec_role.rb +3 -0
  193. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Gemfile +4 -0
  194. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Rakefile +3 -0
  195. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/lib/puppet/functions/l10n.rb +8 -0
  196. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/config.yaml +25 -0
  197. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/ja/puppet-l10n.po +19 -0
  198. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/puppet-l10n.pot +20 -0
  199. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/metadata.json +8 -0
  200. data/spec/fixtures/ssl/127.0.0.1-key.pem +107 -57
  201. data/spec/fixtures/ssl/127.0.0.1.pem +52 -31
  202. data/spec/fixtures/ssl/bad-basic-constraints.pem +57 -35
  203. data/spec/fixtures/ssl/bad-int-basic-constraints.pem +57 -35
  204. data/spec/fixtures/ssl/ca.pem +57 -35
  205. data/spec/fixtures/ssl/crl.pem +28 -18
  206. data/spec/fixtures/ssl/ec-key.pem +11 -11
  207. data/spec/fixtures/ssl/ec.pem +33 -24
  208. data/spec/fixtures/ssl/encrypted-ec-key.pem +12 -12
  209. data/spec/fixtures/ssl/encrypted-key.pem +108 -58
  210. data/spec/fixtures/ssl/intermediate-agent-crl.pem +28 -19
  211. data/spec/fixtures/ssl/intermediate-agent.pem +57 -36
  212. data/spec/fixtures/ssl/intermediate-crl.pem +31 -21
  213. data/spec/fixtures/ssl/intermediate.pem +57 -36
  214. data/spec/fixtures/ssl/oid-key.pem +117 -0
  215. data/spec/fixtures/ssl/oid.pem +69 -0
  216. data/spec/fixtures/ssl/pluto-key.pem +107 -57
  217. data/spec/fixtures/ssl/pluto.pem +52 -30
  218. data/spec/fixtures/ssl/request-key.pem +107 -57
  219. data/spec/fixtures/ssl/request.pem +47 -26
  220. data/spec/fixtures/ssl/revoked-key.pem +107 -57
  221. data/spec/fixtures/ssl/revoked.pem +52 -30
  222. data/spec/fixtures/ssl/signed-key.pem +107 -57
  223. data/spec/fixtures/ssl/signed.pem +52 -30
  224. data/spec/fixtures/ssl/tampered-cert.pem +52 -30
  225. data/spec/fixtures/ssl/tampered-csr.pem +47 -26
  226. data/spec/fixtures/ssl/trusted_oid_mapping.yaml +5 -0
  227. data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +107 -57
  228. data/spec/fixtures/ssl/unknown-127.0.0.1.pem +50 -29
  229. data/spec/fixtures/ssl/unknown-ca-key.pem +107 -57
  230. data/spec/fixtures/ssl/unknown-ca.pem +55 -33
  231. data/spec/integration/application/agent_spec.rb +141 -37
  232. data/spec/integration/application/filebucket_spec.rb +16 -0
  233. data/spec/integration/application/module_spec.rb +21 -0
  234. data/spec/integration/application/resource_spec.rb +64 -0
  235. data/spec/integration/application/ssl_spec.rb +20 -0
  236. data/spec/integration/configurer_spec.rb +18 -2
  237. data/spec/integration/environments/settings_interpolation_spec.rb +0 -4
  238. data/spec/integration/indirector/facts/facter_spec.rb +93 -39
  239. data/spec/integration/l10n/compiler_spec.rb +37 -0
  240. data/spec/integration/parser/pcore_resource_spec.rb +10 -0
  241. data/spec/integration/transaction/report_spec.rb +1 -1
  242. data/spec/integration/type/exec_spec.rb +70 -45
  243. data/spec/integration/type/file_spec.rb +2 -2
  244. data/spec/integration/type/package_spec.rb +6 -6
  245. data/spec/integration/util/rdoc/parser_spec.rb +1 -1
  246. data/spec/integration/util/windows/process_spec.rb +1 -9
  247. data/spec/lib/puppet/test_ca.rb +7 -2
  248. data/spec/lib/puppet_spec/modules.rb +13 -2
  249. data/spec/lib/puppet_spec/puppetserver.rb +15 -0
  250. data/spec/lib/puppet_spec/settings.rb +1 -0
  251. data/spec/shared_behaviours/documentation_on_faces.rb +0 -2
  252. data/spec/shared_contexts/l10n.rb +27 -0
  253. data/spec/spec_helper.rb +1 -10
  254. data/spec/unit/application/agent_spec.rb +7 -2
  255. data/spec/unit/application/apply_spec.rb +76 -56
  256. data/spec/unit/application/resource_spec.rb +29 -0
  257. data/spec/unit/configurer/downloader_spec.rb +6 -0
  258. data/spec/unit/configurer_spec.rb +256 -57
  259. data/spec/unit/defaults_spec.rb +1 -0
  260. data/spec/unit/environments_spec.rb +184 -0
  261. data/spec/unit/facter_impl_spec.rb +31 -0
  262. data/spec/unit/file_bucket/dipper_spec.rb +2 -2
  263. data/spec/unit/file_serving/configuration/parser_spec.rb +23 -0
  264. data/spec/unit/file_serving/configuration_spec.rb +14 -4
  265. data/spec/unit/file_serving/fileset_spec.rb +60 -0
  266. data/spec/unit/file_serving/mount/scripts_spec.rb +69 -0
  267. data/spec/unit/file_system_spec.rb +13 -0
  268. data/spec/unit/functions/assert_type_spec.rb +1 -1
  269. data/spec/unit/functions/empty_spec.rb +10 -0
  270. data/spec/unit/functions/logging_spec.rb +1 -0
  271. data/spec/unit/functions/lookup_spec.rb +64 -0
  272. data/spec/unit/functions/unwrap_spec.rb +8 -0
  273. data/spec/unit/functions4_spec.rb +2 -2
  274. data/spec/unit/gettext/config_spec.rb +12 -0
  275. data/spec/unit/http/client_spec.rb +58 -1
  276. data/spec/unit/http/service/compiler_spec.rb +131 -0
  277. data/spec/unit/indirector/catalog/compiler_spec.rb +101 -10
  278. data/spec/unit/indirector/catalog/rest_spec.rb +8 -0
  279. data/spec/unit/indirector/indirection_spec.rb +10 -3
  280. data/spec/unit/indirector/resource/ral_spec.rb +40 -75
  281. data/spec/unit/interface/action_spec.rb +0 -9
  282. data/spec/unit/module_spec.rb +15 -1
  283. data/spec/unit/module_tool/applications/installer_spec.rb +51 -12
  284. data/spec/unit/network/authstore_spec.rb +0 -15
  285. data/spec/unit/network/formats_spec.rb +6 -0
  286. data/spec/unit/parser/functions/fqdn_rand_spec.rb +15 -1
  287. data/spec/unit/parser/templatewrapper_spec.rb +12 -2
  288. data/spec/unit/pops/parser/parse_containers_spec.rb +0 -11
  289. data/spec/unit/pops/serialization/to_from_hr_spec.rb +58 -0
  290. data/spec/unit/pops/serialization/to_stringified_spec.rb +5 -0
  291. data/spec/unit/pops/types/p_sem_ver_type_spec.rb +18 -0
  292. data/spec/unit/pops/types/p_sensitive_type_spec.rb +18 -0
  293. data/spec/unit/pops/types/type_calculator_spec.rb +6 -0
  294. data/spec/unit/provider/package/gem_spec.rb +1 -1
  295. data/spec/unit/provider/package/nim_spec.rb +42 -0
  296. data/spec/unit/provider/package/pip2_spec.rb +1 -1
  297. data/spec/unit/provider/package/pip3_spec.rb +1 -1
  298. data/spec/unit/provider/package/pip_spec.rb +38 -1
  299. data/spec/unit/provider/package/pkg_spec.rb +29 -4
  300. data/spec/unit/provider/package/puppet_gem_spec.rb +1 -1
  301. data/spec/unit/provider/package/puppetserver_gem_spec.rb +1 -1
  302. data/spec/unit/provider/parsedfile_spec.rb +10 -0
  303. data/spec/unit/provider/service/init_spec.rb +1 -0
  304. data/spec/unit/provider/service/launchd_spec.rb +11 -0
  305. data/spec/unit/provider/service/openwrt_spec.rb +3 -1
  306. data/spec/unit/provider/service/systemd_spec.rb +43 -9
  307. data/spec/unit/provider/service/windows_spec.rb +202 -0
  308. data/spec/unit/provider/user/aix_spec.rb +100 -0
  309. data/spec/unit/provider/user/directoryservice_spec.rb +68 -36
  310. data/spec/unit/provider/user/useradd_spec.rb +43 -2
  311. data/spec/unit/provider_spec.rb +4 -4
  312. data/spec/unit/puppet_spec.rb +12 -4
  313. data/spec/unit/resource/catalog_spec.rb +14 -1
  314. data/spec/unit/resource_spec.rb +58 -2
  315. data/spec/unit/settings_spec.rb +97 -56
  316. data/spec/unit/ssl/certificate_request_spec.rb +8 -14
  317. data/spec/unit/ssl/state_machine_spec.rb +19 -5
  318. data/spec/unit/transaction/additional_resource_generator_spec.rb +0 -2
  319. data/spec/unit/transaction_spec.rb +18 -20
  320. data/spec/unit/type/exec_spec.rb +76 -29
  321. data/spec/unit/type/file/selinux_spec.rb +3 -3
  322. data/spec/unit/type/file/source_spec.rb +4 -4
  323. data/spec/unit/type/service_spec.rb +86 -188
  324. data/spec/unit/type/tidy_spec.rb +24 -7
  325. data/spec/unit/type/user_spec.rb +45 -0
  326. data/spec/unit/type_spec.rb +2 -2
  327. data/spec/unit/util/logging_spec.rb +2 -0
  328. data/spec/unit/util/selinux_spec.rb +87 -16
  329. data/spec/unit/util/windows/sid_spec.rb +39 -4
  330. data/tasks/generate_cert_fixtures.rake +12 -3
  331. data/tasks/parallel.rake +3 -3
  332. metadata +49 -95
  333. data/ext/README.environment +0 -8
  334. data/ext/dbfix.sql +0 -132
  335. data/ext/debian/README.Debian +0 -8
  336. data/ext/debian/README.source +0 -2
  337. data/ext/debian/TODO.Debian +0 -1
  338. data/ext/debian/changelog.erb +0 -1122
  339. data/ext/debian/compat +0 -1
  340. data/ext/debian/control +0 -144
  341. data/ext/debian/copyright +0 -339
  342. data/ext/debian/docs +0 -1
  343. data/ext/debian/fileserver.conf +0 -41
  344. data/ext/debian/puppet-common.dirs +0 -13
  345. data/ext/debian/puppet-common.install +0 -3
  346. data/ext/debian/puppet-common.lintian-overrides +0 -5
  347. data/ext/debian/puppet-common.manpages +0 -28
  348. data/ext/debian/puppet-common.postinst +0 -35
  349. data/ext/debian/puppet-common.postrm +0 -33
  350. data/ext/debian/puppet-el.dirs +0 -1
  351. data/ext/debian/puppet-el.emacsen-install +0 -25
  352. data/ext/debian/puppet-el.emacsen-remove +0 -11
  353. data/ext/debian/puppet-el.emacsen-startup +0 -9
  354. data/ext/debian/puppet-el.install +0 -1
  355. data/ext/debian/puppet-testsuite.install +0 -2
  356. data/ext/debian/puppet-testsuite.lintian-overrides +0 -4
  357. data/ext/debian/puppet.lintian-overrides +0 -3
  358. data/ext/debian/puppet.logrotate +0 -20
  359. data/ext/debian/puppet.postinst +0 -20
  360. data/ext/debian/puppet.postrm +0 -20
  361. data/ext/debian/puppet.preinst +0 -20
  362. data/ext/debian/puppetmaster-common.install +0 -2
  363. data/ext/debian/puppetmaster-common.manpages +0 -2
  364. data/ext/debian/puppetmaster-common.postinst +0 -6
  365. data/ext/debian/puppetmaster-passenger.dirs +0 -4
  366. data/ext/debian/puppetmaster-passenger.postinst +0 -162
  367. data/ext/debian/puppetmaster-passenger.postrm +0 -61
  368. data/ext/debian/puppetmaster.README.debian +0 -17
  369. data/ext/debian/puppetmaster.default +0 -14
  370. data/ext/debian/puppetmaster.init +0 -137
  371. data/ext/debian/puppetmaster.lintian-overrides +0 -3
  372. data/ext/debian/puppetmaster.postinst +0 -20
  373. data/ext/debian/puppetmaster.postrm +0 -5
  374. data/ext/debian/puppetmaster.preinst +0 -22
  375. data/ext/debian/rules +0 -132
  376. data/ext/debian/source/format +0 -1
  377. data/ext/debian/source/options +0 -1
  378. data/ext/debian/vim-puppet.README.Debian +0 -13
  379. data/ext/debian/vim-puppet.dirs +0 -5
  380. data/ext/debian/vim-puppet.yaml +0 -7
  381. data/ext/debian/watch +0 -2
  382. data/ext/freebsd/puppetd +0 -26
  383. data/ext/freebsd/puppetmasterd +0 -26
  384. data/ext/gentoo/conf.d/puppet +0 -5
  385. data/ext/gentoo/conf.d/puppetmaster +0 -12
  386. data/ext/gentoo/init.d/puppet +0 -38
  387. data/ext/gentoo/init.d/puppetmaster +0 -51
  388. data/ext/gentoo/puppet/fileserver.conf +0 -41
  389. data/ext/ips/puppet-agent +0 -44
  390. data/ext/ips/puppet-master +0 -44
  391. data/ext/ips/puppet.p5m.erb +0 -12
  392. data/ext/ips/puppetagent.xml +0 -42
  393. data/ext/ips/puppetmaster.xml +0 -42
  394. data/ext/ips/rules +0 -19
  395. data/ext/ips/transforms +0 -34
  396. data/ext/ldap/puppet.schema +0 -24
  397. data/ext/logcheck/puppet +0 -23
  398. data/ext/osx/file_mapping.yaml +0 -33
  399. data/ext/osx/postflight.erb +0 -109
  400. data/ext/osx/preflight.erb +0 -52
  401. data/ext/osx/prototype.plist.erb +0 -38
  402. data/ext/redhat/fileserver.conf +0 -41
  403. data/ext/redhat/logrotate +0 -21
  404. data/ext/redhat/puppet.spec.erb +0 -842
  405. data/ext/redhat/server.init +0 -128
  406. data/ext/redhat/server.sysconfig +0 -13
  407. data/ext/solaris/pkginfo +0 -6
  408. data/ext/solaris/smf/puppetd.xml +0 -77
  409. data/ext/solaris/smf/puppetmasterd.xml +0 -77
  410. data/ext/solaris/smf/svc-puppetd +0 -71
  411. data/ext/solaris/smf/svc-puppetmasterd +0 -67
  412. data/ext/suse/puppet.spec +0 -310
  413. data/ext/suse/server.init +0 -173
  414. data/ext/yaml_nodes.rb +0 -105
  415. data/spec/unit/indirector/store_configs_spec.rb +0 -7
@@ -1,1122 +0,0 @@
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
-