puppet 2.7.19 → 2.7.20.rc1

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 (324) hide show
  1. data/CONTRIBUTING.md +61 -238
  2. data/Gemfile +32 -0
  3. data/Gemfile.lock +44 -0
  4. data/LICENSE +1 -1
  5. data/README_DEVELOPER.md +300 -5
  6. data/Rakefile +41 -37
  7. data/ext/build_defaults.yaml +20 -0
  8. data/ext/debian/README.Debian +8 -0
  9. data/ext/debian/README.source +2 -0
  10. data/ext/debian/TODO.Debian +1 -0
  11. data/ext/debian/changelog.erb +1104 -0
  12. data/ext/debian/compat +1 -0
  13. data/ext/debian/control +142 -0
  14. data/ext/debian/copyright +361 -0
  15. data/ext/debian/docs +1 -0
  16. data/ext/debian/fileserver.conf +17 -0
  17. data/ext/debian/puppet-common.dirs +8 -0
  18. data/ext/debian/puppet-common.install +3 -0
  19. data/ext/debian/puppet-common.lintian-overrides +7 -0
  20. data/ext/debian/puppet-common.manpages +2 -0
  21. data/ext/debian/puppet-common.postinst +35 -0
  22. data/ext/debian/puppet-common.postrm +32 -0
  23. data/ext/debian/puppet-el.dirs +1 -0
  24. data/ext/debian/puppet-el.emacsen-install +25 -0
  25. data/ext/debian/puppet-el.emacsen-remove +11 -0
  26. data/ext/debian/puppet-el.emacsen-startup +9 -0
  27. data/ext/debian/puppet-el.install +1 -0
  28. data/ext/debian/puppet-testsuite.install +3 -0
  29. data/ext/debian/puppet-testsuite.lintian-overrides +4 -0
  30. data/ext/debian/puppet.NEWS +86 -0
  31. data/ext/debian/puppet.conf +14 -0
  32. data/ext/debian/puppet.default +7 -0
  33. data/ext/debian/puppet.dirs +1 -0
  34. data/ext/debian/puppet.init +118 -0
  35. data/ext/debian/puppet.install +4 -0
  36. data/ext/debian/puppet.lintian-overrides +3 -0
  37. data/ext/debian/puppet.logrotate +11 -0
  38. data/ext/debian/puppet.manpages +36 -0
  39. data/ext/debian/puppet.postinst +20 -0
  40. data/ext/debian/puppet.postrm +20 -0
  41. data/ext/debian/puppet.preinst +20 -0
  42. data/ext/debian/puppetmaster-common.install +5 -0
  43. data/ext/debian/puppetmaster-common.manpages +5 -0
  44. data/ext/debian/puppetmaster-common.puppetqd.default +27 -0
  45. data/ext/debian/puppetmaster-common.puppetqd.init +84 -0
  46. data/ext/debian/puppetmaster-passenger.dirs +4 -0
  47. data/ext/debian/puppetmaster-passenger.postinst +66 -0
  48. data/ext/debian/puppetmaster-passenger.postrm +33 -0
  49. data/ext/debian/puppetmaster.NEWS +13 -0
  50. data/ext/debian/puppetmaster.README.debian +16 -0
  51. data/ext/debian/puppetmaster.default +38 -0
  52. data/ext/debian/puppetmaster.dirs +1 -0
  53. data/ext/debian/puppetmaster.init +158 -0
  54. data/ext/debian/puppetmaster.install +1 -0
  55. data/ext/debian/puppetmaster.lintian-overrides +3 -0
  56. data/ext/debian/puppetmaster.manpages +1 -0
  57. data/ext/debian/puppetmaster.postinst +20 -0
  58. data/ext/debian/puppetmaster.postrm +5 -0
  59. data/ext/debian/puppetmaster.preinst +22 -0
  60. data/ext/debian/rules +127 -0
  61. data/ext/debian/source/format +1 -0
  62. data/ext/debian/source/options +1 -0
  63. data/ext/debian/vim-puppet.README.Debian +13 -0
  64. data/ext/debian/vim-puppet.dirs +3 -0
  65. data/ext/debian/vim-puppet.yaml +5 -0
  66. data/ext/debian/watch +2 -0
  67. data/ext/emacs/puppet-mode.el +1 -0
  68. data/{conf → ext}/osx/PackageInfo.plist +0 -0
  69. data/{conf → ext}/osx/createpackage.sh +0 -0
  70. data/ext/osx/file_mapping.yaml +38 -0
  71. data/ext/osx/preflight.erb +37 -0
  72. data/{tasks/rake/templates → ext/osx}/prototype.plist.erb +0 -0
  73. data/ext/packaging/README-Solaris.md +117 -0
  74. data/ext/packaging/README.md +255 -0
  75. data/ext/packaging/spec/spec_helper.rb +12 -0
  76. data/ext/packaging/spec/tasks/00_utils_spec.rb +66 -0
  77. data/ext/packaging/tasks/00_utils.rake +382 -0
  78. data/ext/packaging/tasks/10_setupvars.rake +71 -0
  79. data/ext/packaging/tasks/20_setupextravars.rake +25 -0
  80. data/ext/packaging/tasks/apple.rake +201 -0
  81. data/ext/packaging/tasks/clean.rake +5 -0
  82. data/ext/packaging/tasks/deb.rake +108 -0
  83. data/ext/packaging/tasks/doc.rake +20 -0
  84. data/ext/packaging/tasks/fetch.rake +18 -0
  85. data/ext/packaging/tasks/gem.rake +68 -0
  86. data/ext/packaging/tasks/ips.rake +80 -0
  87. data/ext/packaging/tasks/mock.rake +126 -0
  88. data/ext/packaging/tasks/pe_deb.rake +9 -0
  89. data/ext/packaging/tasks/pe_remote.rake +45 -0
  90. data/ext/packaging/tasks/pe_rpm.rake +21 -0
  91. data/ext/packaging/tasks/pe_ship.rake +30 -0
  92. data/ext/packaging/tasks/pe_sign.rake +27 -0
  93. data/ext/packaging/tasks/pe_sles.rake +96 -0
  94. data/ext/packaging/tasks/release.rake +73 -0
  95. data/ext/packaging/tasks/remote_build.rake +78 -0
  96. data/ext/packaging/tasks/rpm.rake +52 -0
  97. data/ext/packaging/tasks/ship.rake +78 -0
  98. data/ext/packaging/tasks/sign.rake +82 -0
  99. data/ext/packaging/tasks/tag.rake +8 -0
  100. data/ext/packaging/tasks/tar.rake +68 -0
  101. data/ext/packaging/tasks/template.rake +13 -0
  102. data/ext/packaging/tasks/update.rake +16 -0
  103. data/ext/packaging/tasks/version.rake +21 -0
  104. data/ext/project_data.yaml +24 -0
  105. data/{conf/redhat/puppet.spec → ext/redhat/puppet.spec.erb} +18 -10
  106. data/install.rb +8 -8
  107. data/lib/puppet.rb +2 -6
  108. data/lib/puppet/agent/locker.rb +2 -0
  109. data/lib/puppet/application.rb +1 -1
  110. data/lib/puppet/application/agent.rb +1 -1
  111. data/lib/puppet/application/apply.rb +1 -1
  112. data/lib/puppet/application/cert.rb +5 -6
  113. data/lib/puppet/application/describe.rb +1 -1
  114. data/lib/puppet/application/device.rb +1 -1
  115. data/lib/puppet/application/doc.rb +1 -1
  116. data/lib/puppet/application/filebucket.rb +1 -1
  117. data/lib/puppet/application/inspect.rb +1 -1
  118. data/lib/puppet/application/kick.rb +1 -1
  119. data/lib/puppet/application/master.rb +1 -1
  120. data/lib/puppet/application/resource.rb +1 -1
  121. data/lib/puppet/defaults.rb +21 -3
  122. data/lib/puppet/external/dot.rb +1 -1
  123. data/lib/puppet/face/help/global.erb +1 -1
  124. data/lib/puppet/face/module/install.rb +1 -1
  125. data/lib/puppet/face/module/list.rb +1 -1
  126. data/lib/puppet/face/module/uninstall.rb +1 -1
  127. data/lib/puppet/face/node/clean.rb +23 -18
  128. data/lib/puppet/face/parser.rb +11 -2
  129. data/lib/puppet/file_collection.rb +16 -27
  130. data/lib/puppet/file_collection/lookup.rb +6 -16
  131. data/lib/puppet/file_serving/base.rb +4 -4
  132. data/lib/puppet/indirector/catalog/static_compiler.rb +3 -4
  133. data/lib/puppet/indirector/certificate/disabled_ca.rb +22 -0
  134. data/lib/puppet/indirector/certificate_request/disabled_ca.rb +22 -0
  135. data/lib/puppet/indirector/certificate_revocation_list/disabled_ca.rb +22 -0
  136. data/lib/puppet/indirector/face.rb +2 -2
  137. data/lib/puppet/indirector/key/disabled_ca.rb +22 -0
  138. data/lib/puppet/indirector/node/exec.rb +13 -1
  139. data/lib/puppet/indirector/request.rb +4 -0
  140. data/lib/puppet/metatype/manager.rb +17 -10
  141. data/lib/puppet/network/authstore.rb +1 -1
  142. data/lib/puppet/network/rights.rb +1 -2
  143. data/lib/puppet/node/environment.rb +1 -0
  144. data/lib/puppet/parameter/value.rb +9 -3
  145. data/lib/puppet/parser/ast.rb +1 -4
  146. data/lib/puppet/parser/files.rb +1 -1
  147. data/lib/puppet/parser/functions.rb +68 -22
  148. data/lib/puppet/parser/functions/create_resources.rb +2 -3
  149. data/lib/puppet/parser/functions/shellquote.rb +21 -25
  150. data/lib/puppet/parser/lexer.rb +40 -6
  151. data/lib/puppet/parser/relationship.rb +3 -1
  152. data/lib/puppet/parser/resource.rb +2 -3
  153. data/lib/puppet/parser/resource/param.rb +3 -5
  154. data/lib/puppet/parser/scope.rb +7 -4
  155. data/lib/puppet/property.rb +5 -3
  156. data/lib/puppet/provider.rb +5 -5
  157. data/lib/puppet/provider/aixobject.rb +1 -1
  158. data/lib/puppet/provider/augeas/augeas.rb +1 -1
  159. data/lib/puppet/provider/exec/windows.rb +1 -1
  160. data/lib/puppet/provider/file/windows.rb +10 -29
  161. data/lib/puppet/provider/group/groupadd.rb +2 -3
  162. data/lib/puppet/provider/group/ldap.rb +1 -1
  163. data/lib/puppet/provider/group/windows_adsi.rb +1 -1
  164. data/lib/puppet/provider/ldap.rb +5 -1
  165. data/lib/puppet/provider/nameservice.rb +3 -3
  166. data/lib/puppet/provider/nameservice/directoryservice.rb +2 -2
  167. data/lib/puppet/provider/package/gem.rb +6 -2
  168. data/lib/puppet/provider/package/portage.rb +4 -2
  169. data/lib/puppet/provider/parsedfile.rb +1 -1
  170. data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +2 -2
  171. data/lib/puppet/provider/service/base.rb +2 -41
  172. data/lib/puppet/provider/service/daemontools.rb +1 -1
  173. data/lib/puppet/provider/service/launchd.rb +1 -1
  174. data/lib/puppet/provider/service/redhat.rb +6 -5
  175. data/lib/puppet/provider/service/runit.rb +1 -1
  176. data/lib/puppet/provider/service/service.rb +43 -0
  177. data/lib/puppet/provider/service/windows.rb +1 -8
  178. data/lib/puppet/provider/user/user_role_add.rb +2 -1
  179. data/lib/puppet/provider/user/useradd.rb +8 -3
  180. data/lib/puppet/provider/user/windows_adsi.rb +12 -1
  181. data/lib/puppet/provider/zone/solaris.rb +1 -1
  182. data/lib/puppet/rails/inventory_node.rb +26 -13
  183. data/lib/puppet/reports.rb +1 -1
  184. data/lib/puppet/resource.rb +20 -5
  185. data/lib/puppet/resource/status.rb +1 -1
  186. data/lib/puppet/ssl/certificate_authority.rb +2 -0
  187. data/lib/puppet/ssl/host.rb +31 -6
  188. data/lib/puppet/test/test_helper.rb +3 -1
  189. data/lib/puppet/transaction/event.rb +1 -1
  190. data/lib/puppet/transaction/report.rb +2 -2
  191. data/lib/puppet/type.rb +30 -25
  192. data/lib/puppet/type/augeas.rb +1 -1
  193. data/lib/puppet/type/cron.rb +2 -2
  194. data/lib/puppet/type/exec.rb +6 -6
  195. data/lib/puppet/type/file.rb +5 -15
  196. data/lib/puppet/type/file/content.rb +1 -1
  197. data/lib/puppet/type/file/ensure.rb +1 -1
  198. data/lib/puppet/type/file/mode.rb +1 -1
  199. data/lib/puppet/type/file/selcontext.rb +6 -2
  200. data/lib/puppet/type/file/source.rb +1 -1
  201. data/lib/puppet/type/mount.rb +1 -1
  202. data/lib/puppet/type/package.rb +1 -1
  203. data/lib/puppet/type/schedule.rb +1 -1
  204. data/lib/puppet/type/scheduled_task.rb +1 -1
  205. data/lib/puppet/type/tidy.rb +1 -1
  206. data/lib/puppet/type/whit.rb +16 -9
  207. data/lib/puppet/util.rb +27 -11
  208. data/lib/puppet/util/adsi.rb +25 -23
  209. data/lib/puppet/util/autoload.rb +1 -1
  210. data/lib/puppet/util/classgen.rb +1 -1
  211. data/lib/puppet/util/feature.rb +3 -1
  212. data/lib/puppet/util/fileparsing.rb +9 -9
  213. data/lib/puppet/util/filetype.rb +55 -40
  214. data/lib/puppet/util/instance_loader.rb +5 -5
  215. data/lib/puppet/util/instrumentation.rb +3 -5
  216. data/lib/puppet/util/log_paths.rb +1 -3
  217. data/lib/puppet/util/monkey_patches.rb +34 -8
  218. data/lib/puppet/util/platform.rb +7 -0
  219. data/lib/puppet/util/posix.rb +3 -3
  220. data/lib/puppet/util/provider_features.rb +2 -3
  221. data/lib/puppet/util/rdoc.rb +4 -3
  222. data/lib/puppet/util/reference.rb +1 -1
  223. data/lib/puppet/util/selinux.rb +31 -36
  224. data/lib/puppet/util/tagging.rb +28 -6
  225. data/lib/puppet/util/windows.rb +1 -0
  226. data/lib/puppet/util/windows/error.rb +1 -1
  227. data/lib/puppet/util/windows/process.rb +3 -3
  228. data/lib/puppet/util/windows/security.rb +9 -46
  229. data/lib/puppet/util/windows/sid.rb +96 -0
  230. data/lib/puppet/util/windows/user.rb +65 -2
  231. data/lib/puppet/util/zaml.rb +109 -59
  232. data/lib/puppet/version.rb +18 -0
  233. data/spec/fixtures/unit/util/filetype/aixtab_output +44 -0
  234. data/spec/fixtures/unit/util/filetype/suntab_output +9 -0
  235. data/spec/integration/defaults_spec.rb +26 -7
  236. data/spec/integration/parser/functions_spec.rb +0 -4
  237. data/spec/integration/util/file_locking_spec.rb +1 -1
  238. data/spec/integration/util/windows/security_spec.rb +3 -23
  239. data/spec/lib/puppet_spec/files.rb +3 -3
  240. data/spec/shared_contexts/platform.rb +8 -0
  241. data/spec/spec_helper.rb +6 -1
  242. data/spec/unit/application/queue_spec.rb +2 -1
  243. data/spec/unit/configurer_spec.rb +1 -1
  244. data/spec/unit/face/{instrumentation_data.rb → instrumentation_data_spec.rb} +0 -0
  245. data/spec/unit/face/{instrumentation_listener.rb → instrumentation_listener_spec.rb} +0 -0
  246. data/spec/unit/face/{instrumentation_probe.rb → instrumentation_probe_spec.rb} +0 -0
  247. data/spec/unit/indirector/catalog/static_compiler_spec.rb +194 -0
  248. data/spec/unit/indirector/certificate/disabled_ca_spec.rb +33 -0
  249. data/spec/unit/indirector/certificate_request/disabled_ca_spec.rb +33 -0
  250. data/spec/unit/indirector/certificate_revocation_list/disabled_ca_spec.rb +33 -0
  251. data/spec/unit/indirector/key/disabled_ca_spec.rb +33 -0
  252. data/spec/unit/indirector/request_spec.rb +22 -0
  253. data/spec/unit/network/http/webrick_spec.rb +0 -7
  254. data/spec/unit/node/environment_spec.rb +8 -8
  255. data/spec/unit/parser/ast_spec.rb +0 -5
  256. data/spec/unit/parser/collector_spec.rb +1 -0
  257. data/spec/unit/parser/files_spec.rb +2 -2
  258. data/spec/unit/parser/functions/create_resources_spec.rb +3 -4
  259. data/spec/unit/parser/functions/require_spec.rb +0 -6
  260. data/spec/unit/parser/functions/shellquote_spec.rb +0 -5
  261. data/spec/unit/parser/functions/template_spec.rb +6 -1
  262. data/spec/unit/parser/functions_spec.rb +73 -23
  263. data/spec/unit/parser/lexer_spec.rb +133 -8
  264. data/spec/unit/parser/relationship_spec.rb +24 -0
  265. data/spec/unit/parser/resource_spec.rb +0 -4
  266. data/spec/unit/parser/scope_spec.rb +2 -2
  267. data/spec/unit/property_spec.rb +21 -1
  268. data/spec/unit/provider/exec/posix_spec.rb +7 -6
  269. data/spec/unit/provider/file/windows_spec.rb +29 -29
  270. data/spec/unit/provider/group/groupadd_spec.rb +36 -30
  271. data/spec/unit/provider/group/windows_adsi_spec.rb +2 -2
  272. data/spec/unit/provider/package/gem_spec.rb +12 -0
  273. data/spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb +14 -11
  274. data/spec/unit/provider/service/redhat_spec.rb +11 -1
  275. data/spec/unit/provider/service/windows_spec.rb +19 -0
  276. data/spec/unit/provider/user/ldap_spec.rb +22 -8
  277. data/spec/unit/provider/user/user_role_add_spec.rb +12 -0
  278. data/spec/unit/provider/user/useradd_spec.rb +146 -118
  279. data/spec/unit/provider/user/windows_adsi_spec.rb +24 -2
  280. data/spec/unit/puppet_spec.rb +10 -0
  281. data/spec/unit/resource/status_spec.rb +1 -1
  282. data/spec/unit/resource_spec.rb +73 -0
  283. data/spec/unit/ssl/certificate_authority_spec.rb +25 -1
  284. data/spec/unit/ssl/host_spec.rb +73 -27
  285. data/spec/unit/ssl/key_spec.rb +0 -4
  286. data/spec/unit/transaction/event_spec.rb +1 -1
  287. data/spec/unit/type/exec_spec.rb +1 -1
  288. data/spec/unit/type/file/content_spec.rb +6 -4
  289. data/spec/unit/type/file/{ctime.rb → ctime_spec.rb} +0 -0
  290. data/spec/unit/type/file/{mtime.rb → mtime_spec.rb} +0 -0
  291. data/spec/unit/type/file/{type.rb → type_spec.rb} +0 -0
  292. data/spec/unit/type/file_spec.rb +2 -12
  293. data/spec/unit/type/host_spec.rb +14 -5
  294. data/spec/unit/type/mount_spec.rb +8 -0
  295. data/spec/unit/type/scheduled_task_spec.rb +2 -2
  296. data/spec/unit/util/adsi_spec.rb +23 -8
  297. data/spec/unit/util/command_line_spec.rb +11 -2
  298. data/spec/unit/util/feature_spec.rb +12 -1
  299. data/spec/unit/util/filetype_spec.rb +161 -55
  300. data/spec/unit/util/log_spec.rb +1 -1
  301. data/spec/unit/util/monkey_patches_spec.rb +7 -0
  302. data/spec/unit/util/rdoc_spec.rb +8 -2
  303. data/spec/unit/util/selinux_spec.rb +24 -32
  304. data/spec/unit/util/windows/sid_spec.rb +100 -0
  305. data/spec/unit/util/zaml_spec.rb +165 -25
  306. data/spec/unit/util_spec.rb +3 -9
  307. data/spec/watchr.rb +2 -6
  308. data/tasks/rake/gem.rake +4 -2
  309. data/tasks/rake/sign.rake +1 -1
  310. data/test/language/parser.rb +1 -0
  311. data/test/language/scope.rb +0 -5
  312. data/test/language/snippets.rb +1 -2
  313. data/test/lib/puppettest.rb +16 -27
  314. data/test/lib/puppettest/parsertesting.rb +0 -1
  315. data/test/network/authstore.rb +2 -4
  316. data/test/puppet/defaults.rb +0 -4
  317. data/test/util/fileparsing.rb +2 -6
  318. metadata +1706 -1617
  319. data/conf/osx/preflight +0 -24
  320. data/spec/spec.opts +0 -4
  321. data/spec/unit/file_collection/lookup_spec.rb +0 -45
  322. data/spec/unit/file_collection_spec.rb +0 -52
  323. data/tasks/rake/apple.rake +0 -176
  324. data/test/puppet/errortest.rb +0 -19
data/Rakefile CHANGED
@@ -1,10 +1,16 @@
1
1
  # Rakefile for Puppet -*- ruby -*-
2
2
 
3
+ # We need access to the Puppet.version method
4
+ $LOAD_PATH.unshift(File.expand_path("lib"))
5
+ require 'puppet/version'
6
+
3
7
  $LOAD_PATH << File.join(File.dirname(__FILE__), 'tasks')
4
8
 
5
9
  begin
6
10
  require 'rubygems'
7
11
  require 'rubygems/package_task'
12
+ require 'rspec'
13
+ require 'rspec/core/rake_task'
8
14
  rescue LoadError
9
15
  # Users of older versions of Rake (0.8.7 for example) will not necessarily
10
16
  # have rubygems installed, or the newer rubygems package_task for that
@@ -14,53 +20,51 @@ rescue LoadError
14
20
  end
15
21
 
16
22
  require 'rake'
17
- require 'rspec'
18
- require "rspec/core/rake_task"
19
-
20
-
21
- module Puppet
22
- %x{which git &> /dev/null}
23
- if $?.success? and File.exist?('.git')
24
- # remove the git hash from git describe string
25
- PUPPETVERSION=%x{git describe}.chomp.gsub('-','.').split('.')[0..3].join('.')
26
- else
27
- PUPPETVERSION=File.read('lib/puppet.rb')[/PUPPETVERSION *= *'(.*)'/,1] or fail "Couldn't find PUPPETVERSION"
28
- end
29
- end
30
23
 
31
24
  Dir['tasks/**/*.rake'].each { |t| load t }
25
+ Dir['ext/packaging/tasks/**/*'].sort.each { |t| load t }
32
26
 
33
- FILES = FileList[
34
- '[A-Z]*',
35
- 'install.rb',
36
- 'bin/**/*',
37
- 'sbin/**/*',
38
- 'lib/**/*',
39
- 'conf/**/*',
40
- 'man/**/*',
41
- 'examples/**/*',
42
- 'ext/**/*',
43
- 'tasks/**/*',
44
- 'test/**/*',
45
- 'spec/**/*'
46
- ]
27
+ build_defs_file = 'ext/build_defaults.yaml'
28
+ if File.exist?(build_defs_file)
29
+ begin
30
+ require 'yaml'
31
+ @build_defaults ||= YAML.load_file(build_defs_file)
32
+ rescue Exception => e
33
+ STDERR.puts "Unable to load yaml from #{build_defs_file}:"
34
+ STDERR.puts e
35
+ end
36
+ @packaging_url = @build_defaults['packaging_url']
37
+ @packaging_repo = @build_defaults['packaging_repo']
38
+ raise "Could not find packaging url in #{build_defs_file}" if @packaging_url.nil?
39
+ raise "Could not find packaging repo in #{build_defs_file}" if @packaging_repo.nil?
47
40
 
48
- Rake::PackageTask.new("puppet", Puppet::PUPPETVERSION) do |pkg|
49
- pkg.package_dir = 'pkg'
50
- pkg.need_tar_gz = true
51
- pkg.package_files = FILES.to_a
41
+ namespace :package do
42
+ desc "Bootstrap packaging automation, e.g. clone into packaging repo"
43
+ task :bootstrap do
44
+ if File.exist?("ext/#{@packaging_repo}")
45
+ puts "It looks like you already have ext/#{@packaging_repo}. If you don't like it, blow it away with package:implode."
46
+ else
47
+ cd 'ext' do
48
+ %x{git clone #{@packaging_url}}
49
+ end
50
+ end
51
+ end
52
+ desc "Remove all cloned packaging automation"
53
+ task :implode do
54
+ rm_rf "ext/#{@packaging_repo}"
55
+ end
56
+ end
52
57
  end
53
58
 
54
59
  task :default do
55
60
  sh %{rake -T}
56
61
  end
57
62
 
58
- desc "Create the tarball and the gem - use when releasing"
59
- task :puppetpackages => [:create_gem, :package]
60
-
61
- RSpec::Core::RakeTask.new do |t|
62
- t.pattern ='spec/{unit,integration}/**/*.rb'
63
- t.fail_on_error = true
63
+ if defined?(RSpec::Core::RakeTask)
64
+ RSpec::Core::RakeTask.new do |t|
65
+ t.pattern ='spec/{unit,integration}/**/*.rb'
66
+ t.fail_on_error = true
67
+ end
64
68
  end
65
69
 
66
70
  desc "Run the unit tests"
@@ -0,0 +1,20 @@
1
+ ---
2
+ packaging_url: 'git://github.com/puppetlabs/packaging.git --branch=master'
3
+ packaging_repo: 'packaging'
4
+ default_cow: 'base-squeeze-i386.cow'
5
+ cows: 'base-lucid-i386.cow base-natty-i386.cow base-oneiric-i386.cow base-precise-i386.cow base-quantal-i386.cow base-sid-i386.cow base-squeeze-i386.cow base-stable-i386.cow base-testing-i386.cow base-unstable-i386.cow base-wheezy-i386.cow'
6
+ pbuild_conf: '/etc/pbuilderrc'
7
+ packager: 'puppetlabs'
8
+ gpg_name: 'info@puppetlabs.com'
9
+ gpg_key: '4BD6EC30'
10
+ sign_tar: False
11
+ # a space separated list of mock configs
12
+ final_mocks: 'pl-5-i386 pl-6-i386 fedora-15-i386 fedora-16-i386 fedora-17-i386'
13
+ rc_mocks: 'pl-5-i386-dev pl-6-i386-dev fedora-15-i386-dev fedora-16-i386-dev fedora-17-i386-dev'
14
+ yum_host: 'burji.puppetlabs.com'
15
+ yum_repo_path: '/opt/repository/yum/'
16
+ build_gem: FALSE
17
+ build_dmg: TRUE
18
+ apt_host: 'burji.puppetlabs.com'
19
+ apt_repo_url: 'http://apt.puppetlabs.com'
20
+ apt_repo_path: '/opt/repository/incoming'
@@ -0,0 +1,8 @@
1
+ puppet for Debian
2
+ ------------------
3
+
4
+ The default puppet configuration in Debian will automatically integrate with
5
+ etckeeper if etckeeper is installed. puppet will automatically commit any
6
+ changes made to files in /etc via etckeeper before and after its run.
7
+
8
+ -- Mathias Gug <mathiaz@ubuntu.com> Wed, 18 Aug 2010 15:06:06 -0400
@@ -0,0 +1,2 @@
1
+ The debian directory is now maintained on Alioth in git.
2
+ See http://pkg-puppet.alioth.debian.org/ for more information.
@@ -0,0 +1 @@
1
+ * clean up initscripts per http://mail.madstop.com/pipermail/puppet-dev/2006-June/001069.html
@@ -0,0 +1,1104 @@
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 (2.7.19-1puppetlabs2) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
8
+
9
+ * (#16086) Add version parameter to rm_conffile call in puppetmaster preinst and postinst
10
+
11
+ -- Will Hopper <whopper@puppetlabs.com> Thu, 23 Aug 2012 12:00:14 +0000
12
+
13
+ puppet (2.7.19-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
14
+
15
+ * Imported Upstream version 2.7.19
16
+
17
+ -- Moses Mendoza <moses@puppetlabs.com> Tue, 21 Aug 2012 15:09:14 +0000
18
+
19
+ puppet (2.7.19-0.1rc3puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
20
+
21
+ * Imported Upstream version 2.7.19rc3
22
+
23
+ -- Moses Mendoza <moses@puppetlabs.com> Tue, 14 Aug 2012 13:00:14 +0000
24
+
25
+ puppet (2.7.19-0.1rc2puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
26
+
27
+ * Imported Upstream version 2.7.19rc2
28
+
29
+ -- Moses Mendoza <moses@puppetlabs.com> Tue, 7 Aug 2012 16:04:14 +0000
30
+
31
+ puppet (2.7.19-0.1rc1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
32
+
33
+ * Imported Upstream version 2.7.19rc1
34
+
35
+ -- Moses Mendoza <moses@puppetlabs.com> Wed, 1 Aug 2012 16:32:14 +0000
36
+
37
+ puppet (2.7.18-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
38
+
39
+ * Imported Upstream version 2.7.18
40
+
41
+ -- Moses Mendoza <moses@puppetlabs.com> Tue, 10 Jun 2012 14:02:14 +0000
42
+
43
+ puppet (2.7.17-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
44
+
45
+ * Imported Upstream version 2.7.17
46
+
47
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Tue, 19 Jun 2012 23:43:14 +0000
48
+
49
+ puppet (2.7.16-2puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
50
+
51
+ * Combine logrotate configurations for puppetmaster and puppet to resolve duplicate log entry errors
52
+
53
+ -- William Hopper <whopper@puppetlabs.com> Mon, 18 Jun 2012 17:33:00 +0000
54
+
55
+ puppet (2.7.16-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
56
+
57
+ * Imported Upstream version 2.7.16
58
+
59
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Wed, 13 Jun 2012 21:16:17 +0000
60
+
61
+ puppet (2.7.16-0.1rc1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
62
+
63
+ * Imported Upstream version 2.7.16rc1
64
+
65
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Wed, 06 Jun 2012 23:19:24 +0000
66
+
67
+ puppet (2.7.15-0.1rc4puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
68
+
69
+ * Imported Upstream version 2.7.15rc4
70
+
71
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Fri, 01 Jun 2012 22:20:21 +0000
72
+
73
+ puppet (2.7.15-0.1rc1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
74
+
75
+ * Imported Upstream version 2.7.15rc1
76
+
77
+ -- Moses Mendoza <moses@puppetlabs.com> Tue, 15 May 2012 17:30:38 +0000
78
+
79
+ puppet (2.7.14-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
80
+
81
+ * Imported Upstream version 2.7.14
82
+
83
+ -- Moses Mendoza <moses@puppetlabs.com> Wed, 02 May 2012 12:28:38 +0000
84
+
85
+ puppet (2.7.13-1puppetlabs2) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
86
+
87
+ * (#14080) Add suggests on ruby-activerecord | libactiverecord-ruby
88
+
89
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Tue, 01 May 2012 19:52:38 +0000
90
+
91
+ puppet (2.7.13-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
92
+
93
+ * Imported Upstream version 2.7.13
94
+
95
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Tue, 10 Apr 2012 20:38:23 +0000
96
+
97
+ puppet (2.7.12-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
98
+
99
+ * Imported Upstream version 2.7.12
100
+
101
+ -- Michael Stahnke <stahnma@puppetlabs.com> Mon, 12 Mar 2012 16:49:40 +0000
102
+
103
+ puppet (2.7.11-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy precise; urgency=low
104
+
105
+ * Imported Upstream version 2.7.11
106
+ * CVE-2012-1053/1054
107
+
108
+ -- Michael Stahnke <stahnma@puppetlabs.com> Wed, 22 Feb 2012 01:11:43 +0000
109
+
110
+ puppet (2.7.10-1puppetlabs2) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
111
+
112
+ * (#12498) Add ext directory to puppet-common package. Enable apache2 headers module on passenger install
113
+
114
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Fri, 10 Feb 2012 00:44:48 +0000
115
+
116
+ puppet (2.7.10-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
117
+
118
+ * Imported Upstream version 2.7.10
119
+
120
+ -- Michael Stahnke <stahnma@puppetlabs.com> Wed, 25 Jan 2012 23:33:34 +0000
121
+
122
+ puppet (2.7.9-1puppetlabs3) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
123
+
124
+ * (#11509, #11656) Fix puppetmaster-passenger to set up puppet ca with passenger correctly.
125
+
126
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Tue, 2 Jan 2011 9:25:27 +0000
127
+
128
+ puppet (2.7.9-1puppetlabs2) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
129
+
130
+ * Fix puppet-passenger post-inst to use the correct puppet commands.
131
+
132
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Tue, 20 Dec 2011 14:30:27 +0000
133
+
134
+ puppet (2.7.9-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
135
+
136
+ * Release 2.7.9
137
+
138
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Fri, 9 Dec 2011 20:15:27 +0000
139
+
140
+ puppet (2.7.8-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
141
+
142
+ * Release 2.7.8
143
+
144
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Thu, 8 Dec 2011 17:55:27 +0000
145
+
146
+ puppet (2.7.7-1puppetlabs2) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
147
+
148
+ * Update dependencies. Decrease sysv-rc to 2.86 and update gbp.conf to allow multiple dists per build.
149
+
150
+ -- Matthaus Litteken <matthaus@puppetlabs.com> Fri, 2 Dec 2011 11:55:27 +0000
151
+
152
+ puppet (2.7.7-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
153
+
154
+ * Update to 2.7.7
155
+
156
+ -- Michael Stahnke <stahnma@puppetlabs.com> Tue, 22 Nov 2011 00:07:27 +0000
157
+
158
+ puppet (2.7.6-1puppetlabs1) hardy jaunty karmic lucid maverick natty oneiric unstable lenny sid squeeze wheezy; urgency=low
159
+
160
+ * Update to 2.7.6
161
+ - Includes fix for CVE-2011-3872
162
+
163
+ -- Michael Stahnke <stahnma@puppetlabs.com> Sun, 23 Oct 2011 15:58:26 -0700
164
+
165
+ puppet (2.7.3-1puppetlabs1) lenny; urgency=low
166
+
167
+ * Update to 2.7.3
168
+ - Ripped out etckeeper
169
+ - s/Reductive/Puppet/g
170
+
171
+ -- Michael Stahnke <stahnma@puppetlabs.com> Sun, 25 Sep 2011 00:38:02 -0700
172
+
173
+ puppet (2.7.1-1ubuntu1) oneiric; urgency=low
174
+
175
+ * Merge from debian unstable. Remaining changes:
176
+ - debian/puppetmaster-passenger.postinst: Use cacrl instead of hostcrl to
177
+ set the location of the CRL in apache2 configuration. Fix apache2
178
+ configuration on upgrade as well (LP: #641001)
179
+ - move all puppet dependencies to puppet-common since all the code
180
+ actually located in puppet-common.
181
+ - move libagueas from a recommend to a dependency.
182
+
183
+ -- Chuck Short <zulcss@ubuntu.com> Mon, 25 Jul 2011 01:00:37 +0100
184
+
185
+ puppet (2.7.1-1) UNRELEASED; urgency=low
186
+
187
+ * New upstream version
188
+ * Bump Standards-Version (no changes)
189
+ * Adjust debian/source/options to allow for a VCS-generated patch
190
+ * Tell adduser not to create /var/lib/puppet (Closes: #609896)
191
+ * Use dpkg-statoverride to handle permissions
192
+ * Allow the use of file-rc (Closes: #625638)
193
+ * Use the pkg-ruby-extras watch service
194
+
195
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Sun, 17 Jul 2011 17:43:31 +0200
196
+
197
+ puppet (2.6.8-1ubuntu1) oneiric; urgency=low
198
+
199
+ * Merge from debian unstable. Remaining changes:
200
+ - debian/puppetmaster-passenger.postinst: Use cacrl instead of hostcrl to
201
+ set the location of the CRL in apache2 configuration. Fix apache2
202
+ configuration on upgrade as well (LP: #641001)
203
+ - move all puppet dependencies to puppet-common since all the code
204
+ actually located in puppet-common.
205
+ - move libagueas from a recommend to a dependency.
206
+
207
+ -- Chuck Short <zulcss@ubuntu.com> Mon, 02 May 2011 12:37:51 +0100
208
+
209
+ puppet (2.6.8-1) unstable; urgency=low
210
+
211
+ * New upstream version
212
+
213
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Thu, 28 Apr 2011 19:26:00 +0200
214
+
215
+ puppet (2.6.7-2) unstable; urgency=medium
216
+
217
+ * Fix puppetmaster-passenger.postinst to get proper
218
+ ssl configs (Closes: #620635)
219
+ * Fix maintainer scripts ignoring errors
220
+
221
+ -- Micah Anderson <micah@debian.org> Mon, 11 Apr 2011 11:31:23 -0400
222
+
223
+ puppet (2.6.7-1) unstable; urgency=low
224
+
225
+ * New upstream version
226
+
227
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Fri, 25 Mar 2011 21:10:07 +0100
228
+
229
+ puppet (2.6.6-1) unstable; urgency=low
230
+
231
+ * New upstream release 2.6.6
232
+
233
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Thu, 10 Mar 2011 08:42:00 +0100
234
+
235
+ puppet (2.6.6~rc1-1) experimental; urgency=low
236
+
237
+ * New upstream release candidate
238
+
239
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Thu, 03 Mar 2011 21:00:31 +0100
240
+
241
+ puppet (2.6.5-1) unstable; urgency=low
242
+
243
+ * New upstream version (Closes: #612894)
244
+ * Remove renamed configuration files now handled by other packages (Closes: #564947, #611615)
245
+
246
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Tue, 01 Mar 2011 13:59:58 +0100
247
+
248
+ puppet (2.6.4-2ubuntu2) natty; urgency=low
249
+
250
+ * debian/puppetmaster.default
251
+ - fix remains of automated merge (LP: #726856)
252
+
253
+ -- Andreas Moog <amoog@ubuntu.com> Tue, 01 Mar 2011 14:04:06 +0100
254
+
255
+ puppet (2.6.4-2ubuntu1) natty; urgency=low
256
+
257
+ * Merge from debian unstable. Remaining changes:
258
+ - debian/puppetmaster-passenger.postinst: Use cacrl instead of hostcrl to
259
+ set the location of the CRL in apache2 configuration. Fix apache2
260
+ configuration on upgrade as well (LP: #641001)
261
+ - move all puppet dependencies to puppet-common since all the code
262
+ actually located in puppet-common.
263
+ - move libagueas from a recommend to a dependency.
264
+
265
+ -- Chuck Short <zulcss@ubuntu.com> Tue, 08 Feb 2011 00:28:43 +0000
266
+
267
+ puppet (2.6.4-2) unstable; urgency=low
268
+
269
+ * Release for unstable
270
+ * Move puppetstoredconfigclean to puppetmaster-common, and set ruby1.8
271
+ as parser to match the rest of the puppet suite
272
+
273
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Mon, 07 Feb 2011 07:28:19 +0100
274
+
275
+ puppet (2.6.4-1) experimental; urgency=low
276
+
277
+ [ Micah Anderson ]
278
+ * Make puppetqd honor flags from /etc/default/puppetqd (Closes: #605510)
279
+ * Remove the puppetqd PID file on stop (Closes: #605512)
280
+ * Add ext/puppetstoredconfigclean to puppetmaster:/usr/sbin
281
+ * Patch ext/logcheck/puppet to handle new puppet-master
282
+ Compiled log lines (Closes: #602336)
283
+ * Fix puppetqd initscript PID location
284
+ * Fix /etc/default/puppetmaster comments to match new section headings
285
+ * Fix puppetmaster/README.Debian to match new section headings
286
+ * Fix Should-Start init header in puppet initscript
287
+
288
+ [ Mathias Gug ]
289
+ * New upstream version.
290
+
291
+ [ Stig Sandbeck Mathisen ]
292
+ * debian/puppetmaster.logrotate: send SIGUSR2 on log rotation (Closes:
293
+ #602698)
294
+ * puppet-common: Add versioned dependency on sysv-rc
295
+
296
+ [ martin f krafft ]
297
+ * Use update-rc.d enable/disable in the "debian" provider in the
298
+ "service" type (Closes: #573551)
299
+
300
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Wed, 26 Jan 2011 16:10:56 +0100
301
+
302
+ puppet (2.6.3-1) experimental; urgency=low
303
+
304
+ [ Mathias Gug ]
305
+ * New upstream version.
306
+
307
+ [ Stig Sandbeck Mathisen ]
308
+ * debian/control: Adjust dependencies for puppet-testsuite, depend on
309
+ puppet-common instead of puppet and puppetmaster
310
+
311
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Tue, 23 Nov 2010 10:40:31 +0100
312
+
313
+ puppet (2.6.3-0ubuntu1) natty; urgency=low
314
+
315
+ * New upstream version.
316
+
317
+ -- Mathias Gug <mathiaz@ubuntu.com> Wed, 17 Nov 2010 13:30:18 -0500
318
+
319
+ puppet (2.6.3~rc3-0ubuntu1) natty; urgency=low
320
+
321
+ * New upstream version
322
+
323
+ -- Mathias Gug <mathiaz@ubuntu.com> Fri, 12 Nov 2010 09:29:36 -0500
324
+
325
+ puppet (2.6.3~rc2-0ubuntu1) natty; urgency=low
326
+
327
+ * New upstream version
328
+
329
+ -- Mathias Gug <mathiaz@ubuntu.com> Tue, 09 Nov 2010 17:47:53 -0500
330
+
331
+ puppet (2.6.3~rc1-0ubuntu1) natty; urgency=low
332
+
333
+ * New upstream version
334
+ * debian/control:
335
+ - move all puppet dependencies to puppet-common since all the code is
336
+ actually located in puppet-common.
337
+ - move libaugeas from a recommend to a dependency.
338
+
339
+ -- Mathias Gug <mathiaz@ubuntu.com> Thu, 21 Oct 2010 12:52:13 -0400
340
+
341
+ puppet (2.6.1-1) experimental; urgency=low
342
+
343
+ [ Mathias Gug ]
344
+ * New upstream version:
345
+ - Fix "Puppet standalone broken" (Closes: #594575)
346
+ * test/lib/puppettest/fakes.rb: Fix puppettest to use puppet system
347
+ library.
348
+ * debian/puppetmaster-passenger.postinst: Use cacrl instead of hostcrl to
349
+ set the location of the CRL in apache2 configuration. Fix apache2
350
+ configuration on upgrade as well (LP: #641001).
351
+ * debian/control:
352
+ - move all puppet dependencies to puppet-common since all the code is
353
+ actually located in puppet-common.
354
+ - move libaugeas from a recommend to a dependency.
355
+
356
+ [ Stig Sandbeck Mathisen ]
357
+ * Fix "require" path for puppet queue.
358
+ * Add dependency on "facter" for "puppet-common"
359
+ * Make sure the "puppet-common" package can be purged even when not fully
360
+ installed (Closes: #596163)
361
+
362
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Sat, 02 Oct 2010 12:14:37 +0200
363
+
364
+ puppet (2.6.1-0ubuntu2) maverick; urgency=low
365
+
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
+
370
+ -- Mathias Gug <mathiaz@ubuntu.com> Tue, 21 Sep 2010 13:53:10 -0400
371
+
372
+ puppet (2.6.1-0ubuntu1) maverick; urgency=low
373
+
374
+ [ Stig Sandbeck Mathisen ]
375
+ * Add dependency on "facter" for "puppet-common"
376
+ * Make sure the "puppet-common" package can be purged even when not fully
377
+ installed (Closes: #596163)
378
+
379
+ [ Mathias Gug ]
380
+ * New upstream version.
381
+
382
+ -- Mathias Gug <mathiaz@ubuntu.com> Tue, 14 Sep 2010 12:05:29 -0400
383
+
384
+ puppet (2.6.1~rc4-0ubuntu1) maverick; urgency=low
385
+
386
+ [ Mathias Gug ]
387
+ * New upstream version:
388
+ - Fix "Puppet standalone broken" (Closes: #594575)
389
+ * test/lib/puppettest/fakes.rb: Fix puppettest to use puppet system
390
+ library.
391
+
392
+ [ Stig Sandbeck Mathisen ]
393
+ * Fix "require" path for puppet queue.
394
+
395
+ -- Mathias Gug <mathiaz@ubuntu.com> Tue, 07 Sep 2010 10:44:22 -0400
396
+
397
+ puppet (2.6.1~rc3-1) experimental; urgency=low
398
+
399
+ [ Mathias Gug ]
400
+ * New upstream version:
401
+ - fix config.ru file to run puppetmaster as a rack application.
402
+ (Closes: #593557)
403
+ * Fix test suite to run from a package install rather then from the source
404
+ directory:
405
+ + Rakefile: use system puppet.rb file to detect version.
406
+ + spec/unit/application/apply_spec.rb: Fix test suite to use puppet
407
+ system library.
408
+ + spec/spec_helper.rb: disable gem.
409
+ * Fix init service provider to correctly check the status of services
410
+ using upstart jobs (Closes: #584481, LP: #551544).
411
+ * etckeeper integration (Closes: #571127)
412
+ [server-lucid-puppet-etckeeper-integration]:
413
+ + debian/etckeeper-commit-post, debian/etckeeper-commit-pre:
414
+ Call "etckeeper commit" before and after catalog runs.
415
+ Silently bail out if etckeeper is not available.
416
+ + debian/puppet.conf: Call out to the etckeeper hooks using
417
+ the prerun_command and postrun_command hooks.
418
+ + debian/rules: Install the etckeeper hook scripts in /etc/puppet.
419
+ + debian/README.Debian: add note about etckeeper integration.
420
+ + debian/control: the puppet package suggests etckeeper.
421
+ * Create puppetmaster-passenger package to automatically setup the
422
+ puppetmaster to be run under mod passenger and apache2:
423
+ - create new puppetmaster-common package to share files between
424
+ puppetmaster (ie webrick) and puppetmaster-passenger.
425
+ - move puppetqd to puppetmaster-common.
426
+ - debian/puppet.conf: enable ssl options so that the default configuration
427
+ works out of the box under passenger.
428
+ * debian/puppet-common.postinst: set permissions and ownership of puppet log
429
+ directory.
430
+ * Move puppetmaster's Recommends to Suggests.
431
+
432
+ [ Stig Sandbeck Mathisen ]
433
+ * Recommend lsb-release (Closes: #593606)
434
+ * Recommend debconf-utils (Closes: #593780)
435
+ * ext/puppetlast: removed from upstream
436
+ * Cherry-pick updated man pages from upstream
437
+
438
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Fri, 27 Aug 2010 14:32:00 +0200
439
+
440
+ puppet (2.6.0-2) unstable; urgency=low
441
+
442
+ * Bump Standards-Version to 3.9.1
443
+ * Release for unstable
444
+
445
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Wed, 28 Jul 2010 20:48:21 +0200
446
+
447
+ puppet (2.6.0-1) experimental; urgency=low
448
+
449
+ * New upstream version
450
+ * Fix "short package description doesn't differ from binary package
451
+ puppet", update description of binary package. (Closes: #587364)
452
+ * Move /usr/bin/puppet to the puppet-common package
453
+ * debian/control: Convert Conflicts: to Breaks:
454
+ * debian/control: bump policy version and update project homepage
455
+ * debian/control: Update dependencies/breakages
456
+ * debian/copyright: Remove reference to deprecated bsd license file,
457
+ it is included already
458
+ * move manpage puppet(8) to package puppet-common
459
+ * Debian fix: set correct header in puppet.conf(5)
460
+ * Add puppetqd(8) to the puppetmaster package
461
+
462
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Tue, 20 Jul 2010 09:37:22 +0200
463
+
464
+ puppet (0.25.5-1) unstable; urgency=low
465
+
466
+ [ Stig Sandbeck Mathisen ]
467
+ * New upstream version: 0.25.5
468
+ * Adjust conflicts for puppet-common, to ensure upgrade goes well
469
+
470
+ [ Mathias Gug ]
471
+ * Add /etc/puppet/templates and /etc/puppet/modules to the puppet-
472
+ common package (Closes: #571129)
473
+ * Add binary package "puppet-testsuite" (Closes: #584480)
474
+
475
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Fri, 25 Jun 2010 17:27:05 +0200
476
+
477
+ puppet (0.25.4-6) unstable; urgency=low
478
+
479
+ * clarify passenger options in default/puppetmaster
480
+ * add patch to ext/rack/files/apache2.conf for debian-specific settings
481
+ * debian/control: add version depends on librack-ruby
482
+ * additional start-stop-daemon fix for puppet.init and puppetqd.init
483
+ * debian/rules: actually install config.ru owned by the puppet user,
484
+ this is necessary for proper suid of passenger (closes: #577366)
485
+
486
+ -- Micah Anderson <micah@debian.org> Tue, 20 Apr 2010 16:06:38 -0400
487
+
488
+ puppet (0.25.4-5) unstable; urgency=low
489
+
490
+ * debian/puppetmaster.init: fix invocation of start-stop-daemon (closes:
491
+ * #578066)
492
+
493
+ -- Andrew Pollock <apollock@debian.org> Sat, 17 Apr 2010 20:33:09 -0700
494
+
495
+ puppet (0.25.4-4) unstable; urgency=low
496
+
497
+ [ Andrew Pollock ]
498
+ * debian/watch: update for new upstream location
499
+ * apply patch from Mathias Gug to add /etc/puppet to puppet-common's
500
+ directories so that it is removed on package purge (if empty). Also removes
501
+ /var/log/puppet on purge (closes: #571130)
502
+
503
+ [ Micah Anderson ]
504
+ * add Suggests: libselinux-ruby1.8 as puppet supports it, but only
505
+ if the library is present
506
+ * cherry-pick: add puppetmasterd dbconnections option to increase
507
+ the rails 'max pool size' (redmine: #2568)
508
+ * fix puppetqd initscript status operation
509
+
510
+ [ Andrew Pollock ]
511
+ * debian/rules: don't install config.ru owned by the puppet user (closes:
512
+ #577366)
513
+
514
+ -- Andrew Pollock <apollock@debian.org> Thu, 15 Apr 2010 21:18:32 -0700
515
+
516
+ puppet (0.25.4-3) unstable; urgency=low
517
+
518
+ [ Stig Sandbeck Mathisen ]
519
+ * Fix "puppetmaster and puppet scripts always return 0" with patch from
520
+ Mathias Gug, make sure return codes are actually used (Closes: #573473)
521
+
522
+ [ Micah Anderson ]
523
+ * Disable default puppet.conf option pluginsync=true, see puppet-common.NEWS
524
+ * Suggest in puppetmaster package: libapache2-mod-passenger, librack-ruby
525
+ * Create puppetmaster.README with information about the server type
526
+ * Provide an example apache2.conf for libapache2-mod-passenger
527
+ * Ship the rack config.ru, and README as README.rack
528
+ * Fix puppet-el.emacsen-startup script to be properly installed
529
+ * debian/puppetmaster.init: Fix init stop action to not fail if the
530
+ puppetmaster is already stopped, Thanks Mathias Gug (Closes: #574677)
531
+ * Add Suggests: stompserver/libstomp-ruby1.8 - needed for puppetqd
532
+ * Add README.queueing to puppetmaster package which describes puppetqd
533
+ * Add /etc/init.d/puppetqd and defaults in /etc/defaults/puppetmaster
534
+ * Switch to dpkg-source 3.0 (quilt) format
535
+
536
+ -- Micah Anderson <micah@debian.org> Tue, 16 Mar 2010 12:27:07 -0400
537
+
538
+ puppet (0.25.4-2) unstable; urgency=low
539
+
540
+ [ Stig Sandbeck Mathisen ]
541
+ * puppet: do not explicitly remove /var/lib/puppet on purge (Closes: #525852)
542
+ * upstream cherry-pick: Updated man pages and moved puppet.conf.8 to
543
+ puppet.conf.5 (Closes: #563567)
544
+ * Fix "Improper ownership of /var/lib/puppet/state", explicitly create this
545
+ in postinst (and remove in postrm on purge) (Closes: #462551)
546
+ * Fix "wrong default location for templates", update default settings, and
547
+ create puppet-common.NEWS with information (Closes: #484659)
548
+ * Move postinst and postrm handling of shared users and directories to
549
+ puppet-common (Closes: #570012)
550
+
551
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Tue, 16 Feb 2010 06:30:55 +0000
552
+
553
+ puppet (0.25.4-1) unstable; urgency=low
554
+
555
+ [Nigel Kersten ]
556
+ * New upstream version 0.25.4
557
+
558
+ [ Micah Anderson ]
559
+ * Fix debian/rules typo in install of puppet-mode-init.el
560
+ * Fix which package puppet-mode-init.el gets installed into
561
+ * Add Suggests for vim-puppet and puppet-el on binary packages
562
+
563
+ [ Stig Sandbeck Mathisen ]
564
+ * Update debian/copyright
565
+ * debian/{puppet,puppetmaster}.init: Add status argument, fix pid file
566
+ locations (Closes: #545975)
567
+ * Refactoring: Add binary packages for puppet-common, puppet-el, vim-puppet
568
+
569
+ -- Stig Sandbeck Mathisen <ssm@debian.org> Mon, 01 Feb 2010 12:31:58 +0100
570
+
571
+ puppet (0.25.1-3) unstable; urgency=low
572
+
573
+ [ Nigel Kersten ]
574
+ * Require modification of /etc/default/puppet to start puppet client daemon.
575
+ (closes: #518831)
576
+ * cherry pick upstream fix for puppetrun with tags (closes: #559092)
577
+ * cherry pick upstream fix for supplementary groups not being reset.
578
+ (CVE-2009-3564) (closes: #551073)
579
+
580
+ [ Andrew Pollock ]
581
+ * debian/{puppet,puppetmaster}.pid: Correct the path to the pidfiles
582
+ (closes: #561231)
583
+ * debian/control: version the build dependency on facter (closes: #551055)
584
+
585
+ -- Andrew Pollock <apollock@debian.org> Wed, 16 Dec 2009 11:36:39 -0800
586
+
587
+ puppet (0.25.1-2) unstable; urgency=low
588
+
589
+ * Add puppetqd executable to puppetmaster package (closes: #554624)
590
+
591
+ -- Nigel Kersten <nigel@explanatorygap.net> Thu, 05 Nov 2009 11:23:10 -0800
592
+
593
+ puppet (0.25.1-1) unstable; urgency=low
594
+
595
+ * New upstream release of 0.25.1
596
+
597
+ -- Nigel Kersten <nigel@explanatorygap.net> Tue, 27 Oct 2009 10:35:40 -0700
598
+
599
+ puppet (0.25.0-1) unstable; urgency=low
600
+
601
+ * New upstream release
602
+ * Tweak .install files to cope with new use of sbindir from upstream.
603
+ * Add the new auth.conf config file to the puppetmaster package.
604
+
605
+ -- Nigel Kersten <nigel@explanatorygap.net> Sun, 16 Aug 2009 05:34:17 -0700
606
+
607
+ puppet (0.24.8-3) unstable; urgency=low
608
+
609
+ [ Micah Anderson ]
610
+ * Make logcheck ignore 'Reopening log files' on puppetmaster (Closes: #538721)
611
+
612
+ [ Nigel Kersten ]
613
+ * switch from unreleased to unstable.
614
+
615
+ -- Nigel Kersten <nigel@explanatorygap.net> Sun, 16 Aug 2009 05:33:53 -0700
616
+
617
+ puppet (0.24.8-2) unstable; urgency=high
618
+
619
+ [ Micah Anderson ]
620
+ * Cherry-pick upstream versioncmp fix (redmine:#2110)
621
+
622
+ [ Andrew Pollock ]
623
+ * Enable waiting for certificates for the default value (upstream default
624
+ that was previously disabled or enabled with a 5 second value)
625
+ * Re-ship the vim syntax file in the correct location (it fell out after the
626
+ 0.24.5-3 upload) (closes: #530752)
627
+ * Re-add the 0.24.5-3 changelog entry
628
+ * debian/puppet.postrm: don't delete the user or group (closes: #528068,
629
+ #527381)
630
+ * debian/puppet.{preinst,postinst}: Applied modified patch from Stig
631
+ Sandbeck Mathisen to call conditionally call adduser in the postinst, if
632
+ it's available
633
+
634
+ [ Nigel Kersten ]
635
+ * Switched to use install.rb, primarily to stop shebangs using /usr/bin/env
636
+ * Stopped using dh_movefiles, moved to dh_install
637
+ * debian/rules greatly cleaned up due to above two changes
638
+
639
+ [ Andrew Pollock ]
640
+ * debian/control: add rdoc, libopenssl-ruby and facter to build dependencies
641
+ * debian/control: depend on ruby1.8 instead of ruby to placate Lintian
642
+ * debian/puppet.install: brown paper bag release averted; install
643
+ /usr/lib/ruby/1.8
644
+ * debian/rules: ensure permissions on everything under /usr/lib/ruby/1.8 is
645
+ correct
646
+
647
+ -- Andrew Pollock <apollock@debian.org> Tue, 16 Jun 2009 23:37:22 -0700
648
+
649
+ puppet (0.24.8-1) unstable; urgency=low
650
+
651
+ * New upstream release
652
+ * debian/control: Add Nigel Kersten and myself as uploaders
653
+ * debian/changelog: wrap long lines
654
+ * debian/watch: ignore release candidates
655
+ * debian/compat: bump to 5
656
+ * debian/control: bump Standards-Version (no changes)
657
+
658
+ -- Andrew Pollock <apollock@debian.org> Mon, 13 Apr 2009 17:12:47 -0700
659
+
660
+ puppet (0.24.7-2) experimental; urgency=low
661
+
662
+ * make puppetmaster conflict previous puppet due to man page move
663
+
664
+ -- Micah Anderson <micah@debian.org> Wed, 28 Jan 2009 10:28:23 -0500
665
+
666
+ puppet (0.24.7-1) experimental; urgency=low
667
+
668
+ * New upstream release
669
+ * Fixed comment in defaults/puppetmaster (Closes: #510881)
670
+ * Fixed debian/puppetmaster.manpages and debian/puppet.manpages to
671
+ distribute
672
+ puppetrun and puppetca correctly, thanks Savvas Radevic (Closes: #511826)
673
+ * Added puppetmaster Recommends: libldap-ruby1.8 to silence puppetrun
674
+ (Closes: #512639)
675
+ * Added puppet Recommends: libaugeas-ruby1.8 for new Augeas support in this
676
+ release
677
+
678
+ -- Micah Anderson <micah@debian.org> Fri, 23 Jan 2009 09:27:09 -0500
679
+
680
+ puppet (0.24.6-1) experimental; urgency=low
681
+
682
+ * New upstream release (Closes: #506129, #504624, #502163)
683
+ * Distribute filebucket binary (Closes: #499999)
684
+ * Fix missing check for START variable in defaults files (Closes: #498284)
685
+ * Fix maintainer scripts so that they do not ignore errors (set -e)
686
+ * Fix maintainer scripts so they don't have prepended paths (thanks lintian)
687
+ * Cherry-pick fixes from upstream:
688
+ - comparison of String with 0 failed (Closes: #500848)
689
+ - filename cannot handle ++ (Closes: #502163)
690
+ - tidy must specify size, age or both (Closes: #500852)
691
+
692
+ -- Micah Anderson <micah@debian.org> Sat, 29 Nov 2008 13:59:25 -0500
693
+
694
+ puppet (0.24.5-3) unstable; urgency=medium
695
+
696
+ * Set wait for cert timeout to 5 secs, to avoid resource abuse (Closes:
697
+ #509566)
698
+ * Distribute filebucket binary (Closes: #499999)
699
+ * Place vim syntax in the correct location (LP: #181960)
700
+
701
+ -- Thom May <thom@debian.org> Wed, 07 Jan 2009 15:15:34 -0500
702
+
703
+ puppet (0.24.5-2) unstable; urgency=low
704
+
705
+ * Fix puppetlast to work with 0.24.5
706
+ * Adjust logcheck to match against new log messages in 0.24.5
707
+ * Update standards version to 3.8.0 (no changes)
708
+ * Update changelog to reduce length of line to make lintian happy
709
+
710
+ -- Micah Anderson <micah@debian.org> Sat, 26 Jul 2008 15:43:45 -0400
711
+
712
+ puppet (0.24.5-1) unstable; urgency=low
713
+
714
+ * New upstream release
715
+ * Applied patch from Martin Krafft to improve logcheck file installation
716
+
717
+ -- Thom May <thom@debian.org> Thu, 24 Jul 2008 10:58:08 +0100
718
+
719
+ puppet (0.24.4-8) unstable; urgency=low
720
+
721
+ * Changed the default port value to 8140 in /etc/default/puppetmaster
722
+ to be consistent with the client default port. (Closes: #483823)
723
+ * Cherry-picked various bug fixes from upstream:
724
+ - further emacs mode updates from Russ Allbery
725
+ - misleading error if CA private key can not be decrypted (trac:#1271)
726
+ - fix missing bracket in documentation (trac:#1209)
727
+ - man pages updates (trac:#1211)
728
+ - add dump parameter to mount type (trac:#1212)
729
+ - fixed undefined variable in lib/puppet/util/settings.rb (trac:#1218)
730
+ - usermod problem on Solaris (trac:#1207)
731
+ - added native authorized_keys type
732
+ - test within a template if a variable or fact is defined (trac:#1177)
733
+ - Fixed Red Hat service disabling (trac:#1219)
734
+ - fix crontab provider parse error when line begins w/space (trac:#1216)
735
+ - Fix for latest method in rpm provider (trac:#1224)
736
+ - puppetd documentation updates (trac:#1227)
737
+ - Modified the 'factpath' setting to automatically configure Facter
738
+ to load facts there if a new enough version of Facter is used.
739
+ - Removing unused file lib/puppet/util/variables.rb (trac:#1229)
740
+ - Fixing transaction support for prefetching generated resources.
741
+ Previously, we prefetched then generated, which caused generated
742
+ resources that needed prefetching not to work. This just reorders
743
+ the calls, so generated resources now get prefetched.
744
+ - Respect "replace => false" for symlinks (trac:#1235)
745
+ - Added cron random function fixing ticket (trac:#311)
746
+ - No more clear_cache failures (trac:#1247)
747
+ - Fixed Rakefile to install non-.rb files (trac:#1266)
748
+
749
+ -- Micah Anderson <micah@debian.org> Sat, 31 May 2008 11:39:47 -0400
750
+
751
+ puppet (0.24.4-7) unstable; urgency=low
752
+
753
+ * Update emacs-mode with changes cherry-picked from rra's repository
754
+ * Fix typo in puppetmaster.init (Closes: #480019)
755
+ * Fix variable name in /etc/default/puppetmaster comments
756
+ * Fix incorrect port increment in puppetmaster initscript when mongrel
757
+ is used, thanks Francois Deppierraz (Closes: #480263)
758
+ * Add puppetmaster.postrm to remove /var/log/puppet on purge
759
+ * Added debian/puppetmaster.dirs containing etc/puppet/manifests
760
+ * Remove puppet group on purge (Closes: #481511)
761
+ * Remove old config files and stray directories (Closes: #454681)
762
+
763
+ -- Micah Anderson <micah@debian.org>> Sat, 03 May 2008 16:18:32 -0400
764
+
765
+ puppet (0.24.4-6) unstable; urgency=low
766
+
767
+ * Remove bashisms in puppetmaster.init
768
+ * Add puppetlast script
769
+
770
+ -- Micah Anderson <micah@debian.org>> Wed, 30 Apr 2008 07:37:04 -0400
771
+
772
+ puppet (0.24.4-5) unstable; urgency=low
773
+
774
+ * Fix missing --pidfile piece for mongrel startup and make
775
+ stop consistent, thanks Bart Cortooms (Closes: #476840)
776
+ * Add trailing newline missing from default files
777
+
778
+ -- Micah Anderson <micah@debian.org> Sat, 19 Apr 2008 11:03:35 -0400
779
+
780
+ puppet (0.24.4-4) unstable; urgency=low
781
+
782
+ * Create /etc/default/puppet and /etc/default/puppetmaster
783
+ * Modify /etc/init.d/puppetmaster to support mongrel instances
784
+ on multiple ports
785
+ * Remove no longer necessary .svn cleaning from debian/rules
786
+ * Added $network and $named appropriated places in the LSB
787
+ headers in puppet and puppetmaster initscripts,
788
+ thanks Sam Quigley
789
+ * Install ralsh (Closes: #476629)
790
+ * Cherry-pick upstream patches from 0.24.x branch:
791
+ - Install manpages
792
+ - Fix shebang issues (#1148)
793
+ - Updated fix for (#1020)
794
+ - Fix for (#1174)
795
+ - Emacs mode updates (#1160)
796
+ - Debian service [en|dis]able issue (#1161)
797
+ - User type group list validation enhancement
798
+ - Fix configtimeout issue (#1176)
799
+
800
+ -- Micah Anderson <micah@debian.org> Sun, 13 Apr 2008 19:18:46 -0400
801
+
802
+ puppet (0.24.4-3) unstable; urgency=low
803
+
804
+ * Remove pi binary, puppetdoc provides this functionality now
805
+ (Closes: #472850)
806
+
807
+ -- Micah Anderson <micah@debian.org> Fri, 28 Mar 2008 12:38:30 -0400
808
+
809
+ puppet (0.24.4-2) unstable; urgency=low
810
+
811
+ * Fix duplicate man8/puppetmasterd.8 install
812
+
813
+ -- Micah Anderson <micah@debian.org> Tue, 25 Mar 2008 22:58:22 -0400
814
+
815
+ puppet (0.24.4-1) unstable; urgency=low
816
+
817
+ * New upstream release
818
+ * Install man pages missing from upstream release
819
+
820
+ -- Micah Anderson <micah@debian.org> Tue, 25 Mar 2008 18:17:02 -0400
821
+
822
+ puppet (0.24.3-1) unstable; urgency=low
823
+
824
+ [ Micah Anderson]
825
+ * New upstream release
826
+ * Install man pages (Closes: #385529)
827
+ * Apply lsb formatted dependency info into initscripts, thanks
828
+ Petter Reinholdtsen (Closes: #462915)
829
+ * Install more robust puppet-mode.el
830
+ * Add factpath and pluginsync=true to the default puppet.conf so that
831
+ facts added through pluginsync are loaded by puppet
832
+ * Add [plugins] section to fileserver.conf
833
+ * Updated outdated debian/control substrvar for puppet to ${source:Version}
834
+ * Updated link in debian/copyright for new URL to license
835
+ * Updated copyright in debian/copyright
836
+ * Bumped standards version to 3.7.3.0 (no changes)
837
+ * Switch debhelper from Build-Depends-Indep to Build-Depends because it is
838
+ required to run clean target (lintian check:
839
+ clean-should-be-satisfied-by-build-depends)
840
+ * Moved homepage from Description to control field
841
+ * Added Vcs-Browser and Vcs-Git fields to debian/control
842
+ [ Thom May ]
843
+ * If puppet can't start, continue with package install
844
+
845
+ -- Micah Anderson <micah@debian.org> Sun, 09 Mar 2008 14:03:00 -0400
846
+
847
+ puppet (0.24.1-2) unstable; urgency=low
848
+
849
+ * Set rundir correctly (Closes: #460203, #459579)
850
+ * Apply patch for puppet#1003 to enable collection of tagged resources
851
+
852
+ -- Thom May <thom@debian.org> Wed, 16 Jan 2008 11:08:55 +0100
853
+
854
+ puppet (0.24.1-1) unstable; urgency=low
855
+
856
+ * New upstream release (Closes: #445626)
857
+ * Set maintainer to pkg-puppet-devel
858
+
859
+ -- Thom May <thom@debian.org> Sun, 30 Dec 2007 19:13:47 +0100
860
+
861
+ puppet (0.24.0-1) unstable; urgency=low
862
+
863
+ * New upstream release
864
+
865
+ -- Thom May <thom@debian.org> Wed, 19 Dec 2007 16:00:34 +0100
866
+
867
+ puppet (0.23.2-15) unstable; urgency=low
868
+
869
+ * No change upload setting maintainer to me whilst waiting for an alioth
870
+ project.
871
+
872
+ -- Thom May <thom@debian.org> Thu, 29 Nov 2007 10:44:50 +0100
873
+
874
+ puppet (0.23.2-14) unstable; urgency=low
875
+
876
+ * Orphaning.
877
+ * Create /var/lib/puppet in the puppet package. Closes: #452506.
878
+ * Start the puppet init script after puppetmaster, to silence whiny bug
879
+ reports. Closes: #452064.
880
+ * Add a reload command to the Puppet init script. Closes: #452060.
881
+
882
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 29 Nov 2007 10:48:21 +1100
883
+
884
+ puppet (0.23.2-13) unstable; urgency=low
885
+
886
+ * Drop quotes from an already-quoted value in a query. Closes: #448179.
887
+ * Remove excessive quoting from puppet/network/handler/master.rb.
888
+ Closes: #448221.
889
+ * Force removal of directories during pluginsync. Closes: #448180.
890
+
891
+ -- Matthew Palmer <mpalmer@debian.org> Tue, 30 Oct 2007 14:55:19 +1100
892
+
893
+ puppet (0.23.2-12) unstable; urgency=low
894
+
895
+ * Create /var/run/puppet and set the perms in the various initscripts, as
896
+ well as hardcoding the rundir better in configuration.rb and removing
897
+ the explicit rundir setting from puppet.conf. Closes: #447314.
898
+ * Apply additional patch given (backwards) to fix export/collect on some
899
+ database backends. Closes: #445591 (again!)
900
+
901
+ -- Matthew Palmer <mpalmer@debian.org> Sat, 20 Oct 2007 11:28:50 +1000
902
+
903
+ puppet (0.23.2-11) unstable; urgency=low
904
+
905
+ * Apply patch from puppet#786 to fix a problem with exported resources not
906
+ being properly detected as needing a rerun. Closes: #445591.
907
+ * Fix ignore handling for the plugins mount. Closes: #446390.
908
+
909
+ -- Matthew Palmer <mpalmer@debian.org> Mon, 15 Oct 2007 09:11:25 +1000
910
+
911
+ puppet (0.23.2-10) unstable; urgency=low
912
+
913
+ * Recycle connections when we change (or get) certs.
914
+ * Catch and retry more transient errors in the XMLRPC wrapper.
915
+
916
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 27 Sep 2007 15:06:11 +1000
917
+
918
+ puppet (0.23.2-9) unstable; urgency=low
919
+
920
+ * Recycle the HTTP connection if we get an EPIPE during a request.
921
+ Closes: #444177. Thanks to Jos Backus for helping with testing.
922
+
923
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 27 Sep 2007 09:55:34 +1000
924
+
925
+ puppet (0.23.2-8) unstable; urgency=low
926
+
927
+ * Remove extraneous debugging output accidentally left behind in the last
928
+ release.
929
+ * Fix spelling mistakes in debian/control and debian/puppet.preinst.
930
+ Closes: #444158.
931
+
932
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 27 Sep 2007 07:45:07 +1000
933
+
934
+ puppet (0.23.2-7) unstable; urgency=low
935
+
936
+ * Ignore ENOENT errors in the module plugin syncing code, since they're
937
+ innocuous and expected.
938
+ * Allow facts that are downloaded through pluginsync to be used like any
939
+ other fact.
940
+ * Allow users to still have an old-style plugins mount if they want, by
941
+ specifying a path for the mount. Also track down a fault in old-style
942
+ fileserving which did strange slash-stripping. Closes: #443932.
943
+
944
+ -- Matthew Palmer <mpalmer@debian.org> Tue, 25 Sep 2007 16:41:32 +1000
945
+
946
+ puppet (0.23.2-6) unstable; urgency=low
947
+
948
+ * Patch rails/param_name.rb to stop query failures, as per puppet#784.
949
+ * Actually honour namevar.
950
+ * Only set dbuser if explicitly asked for.
951
+ * Fix annoying database deletion error for ParamValue objects.
952
+ * Add an accessor for ca_file, since older openssl-ruby only had a writer.
953
+ * Fix the fileserver to honour ignore. Thanks to Nathan Ward for the
954
+ bug report on IRC.
955
+
956
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 20 Sep 2007 16:10:41 +1000
957
+
958
+ puppet (0.23.2-5) unstable; urgency=low
959
+
960
+ * Add some NEWS for the ssldir transition. Should have done that earlier.
961
+ * Remove the explicit mode change for vardir, and fix up the mode on
962
+ statedir, as well. Closes: #425496.
963
+ * Only set some database parameters if they're explicitly set; this makes
964
+ life easier for PgSQL ident auth.
965
+ * Allow empty config options.
966
+
967
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 13 Sep 2007 11:09:59 +1000
968
+
969
+ puppet (0.23.2-4) unstable; urgency=low
970
+
971
+ * Fix puppet#776 in a slightly better way by only flushing the cache when
972
+ a value is changed, rather than whenever a value is read.
973
+ * Apply patch from puppet#755 to cache connections to the Puppetmaster,
974
+ which improves performance by more than a little.
975
+ * Modify the fileserver so that it provides a 'plugins' mount which
976
+ exports the union of the plugins directory of all modules.
977
+
978
+ -- Matthew Palmer <mpalmer@debian.org> Fri, 31 Aug 2007 15:32:04 +1000
979
+
980
+ puppet (0.23.2-3) unstable; urgency=low
981
+
982
+ * Clear the config value cache every time. This is a titchy little
983
+ performance hit, but it works around puppet#776 rather nicely.
984
+
985
+ -- Matthew Palmer <mpalmer@debian.org> Fri, 24 Aug 2007 16:08:04 +1000
986
+
987
+ puppet (0.23.2-2) unstable; urgency=low
988
+
989
+ * Move the SSL state directory to a more policy-friendly location,
990
+ /var/lib/puppet/ssl.
991
+
992
+ -- Matthew Palmer <mpalmer@debian.org> Tue, 21 Aug 2007 12:54:40 +1000
993
+
994
+ puppet (0.23.2-1) unstable; urgency=low
995
+
996
+ * New upstream release.
997
+
998
+ -- Matthew Palmer <mpalmer@debian.org> Tue, 7 Aug 2007 12:47:49 +1000
999
+
1000
+ puppet (0.23.1-1) unstable; urgency=low
1001
+
1002
+ * New upstream release.
1003
+ * Switch primary maintainer to me. Thanks jaq.
1004
+ * Make the recommendation for rails >= 1.2.3-2, to avoid
1005
+ incompatibilities. This breaks compatibility with stable, but the rails
1006
+ package from unstable should install cleanly in stable. Closes: #433999
1007
+
1008
+ -- Matthew Palmer <mpalmer@debian.org> Sat, 21 Jul 2007 16:34:36 +1000
1009
+
1010
+ puppet (0.23.0-1) unstable; urgency=low
1011
+
1012
+ * New upstream release.
1013
+ - Includes a new configuration file handling system; see NEWS.Debian.
1014
+
1015
+ -- Matthew Palmer <mpalmer@debian.org> Mon, 25 Jun 2007 09:55:12 +1000
1016
+
1017
+ puppet (0.22.4-2) unstable; urgency=low
1018
+
1019
+ * Depend on libshadow-ruby1.8, for new password modification functionality
1020
+ added to upstream 0.22.4.
1021
+ * Several improvements from Micah Anderson:
1022
+ - Better vim syntax installation process.
1023
+ - Install Emacs syntax highlighting.
1024
+ - Install logcheck rules. Closes: #421851.
1025
+
1026
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 3 May 2007 15:04:15 +1000
1027
+
1028
+ puppet (0.22.4-1) unstable; urgency=low
1029
+
1030
+ * New upstream release.
1031
+
1032
+ -- Matthew Palmer <mpalmer@debian.org> Wed, 2 May 2007 12:20:15 +1000
1033
+
1034
+ puppet (0.22.3-1) unstable; urgency=low
1035
+
1036
+ * New upstream release. Closes: #415773.
1037
+ * Switch to using our own logrotate config, and enhance it as per
1038
+ David Schmitt's suggestions. Closes: #414282.
1039
+ * Add puppetrun to the puppetmaster package, and actually put puppetdoc
1040
+ into the puppet package. Closes: #419273.
1041
+ * Copy vim syntax highlighting file into the puppet package, and add a
1042
+ stanza to have Vim automatically highlight .pp files. Closes: #412868.
1043
+ Thanks to David Schmitt for researching how to do all of that.
1044
+ * Add a templatedir setting to the default puppetmasterd.conf to make it
1045
+ obvious that it can be changed. Closes: #407506.
1046
+
1047
+ -- Matthew Palmer <mpalmer@debian.org> Wed, 18 Apr 2007 14:03:33 +1000
1048
+
1049
+ puppet (0.22.1-1) unstable; urgency=low
1050
+
1051
+ * New upstream release.
1052
+
1053
+ -- Matthew Palmer <mpalmer@debian.org> Fri, 2 Feb 2007 09:06:46 +1100
1054
+
1055
+ puppet (0.22.0-1) unstable; urgency=low
1056
+
1057
+ * New upstream release.
1058
+ * Use --startas instead of --init in init scripts, which (according to
1059
+ Paul Hampson) makes checking for already-running instances work.
1060
+ Closes: #405912.
1061
+
1062
+ -- Matthew Palmer <mpalmer@debian.org> Mon, 8 Jan 2007 08:41:35 +1100
1063
+
1064
+ puppet (0.20.1-1) unstable; urgency=low
1065
+
1066
+ * New upstream release. (Closes: #387674)
1067
+ * Rationalise the puppetmasterd init script.
1068
+ * Add inclusion of /etc/default files for init scripts. (Closes: #388178)
1069
+ * Add puppet.conf to match puppetd.conf. (Closes: #385646)
1070
+
1071
+ -- Matthew Palmer <mpalmer@debian.org> Thu, 30 Nov 2006 10:54:19 +1100
1072
+
1073
+ puppet (0.18.4-1) unstable; urgency=low
1074
+
1075
+ * New upstream release.
1076
+ - Properly detect all services, including those in rcS.d.
1077
+ (Closes: #378351)
1078
+ * Add Homepage: to the long description. (Closes: #377896)
1079
+
1080
+ -- Matthew Palmer <mpalmer@debian.org> Mon, 24 Jul 2006 19:46:06 +1000
1081
+
1082
+ puppet (0.18.3-1) unstable; urgency=low
1083
+
1084
+ * New upstream version.
1085
+ - Set DEBIAN_FRONTEND=noninteractive when installing Debian packages.
1086
+ (Closes: #378338)
1087
+
1088
+ -- Matthew Palmer <mpalmer@debian.org> Sun, 16 Jul 2006 10:58:50 +1000
1089
+
1090
+ puppet (0.18.1-1) unstable; urgency=low
1091
+
1092
+ * Make Puppet not wait for a cert at all (to prevent startup hangs).
1093
+ * Cleanup the init scripts to not have NO_START detritus.
1094
+ * Apply puppet.debian-frontend, to set DEBIAN_FRONTEND=noninteractive on
1095
+ package installation.
1096
+
1097
+ -- Matthew Palmer <mpalmer@debian.org> Tue, 27 Jun 2006 15:05:32 +1000
1098
+
1099
+ puppet (0.18.0-1) unstable; urgency=low
1100
+
1101
+ * Initial release. (Closes: #348625)
1102
+
1103
+ -- Matthew Palmer <mpalmer@debian.org> Wed, 24 May 2006 13:10:01 +1000
1104
+