puppet 0.24.6 → 0.24.7

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 (383) hide show
  1. data/CHANGELOG +115 -0
  2. data/Rakefile +43 -14
  3. data/bin/puppetca +6 -5
  4. data/bin/puppetdoc +109 -15
  5. data/bin/ralsh +3 -1
  6. data/conf/redhat/puppet.spec +74 -48
  7. data/examples/mcx_dock_absent.pp +4 -0
  8. data/examples/mcx_dock_default.pp +118 -0
  9. data/examples/mcx_dock_full.pp +125 -0
  10. data/examples/mcx_dock_invalid.pp +9 -0
  11. data/examples/mcx_nogroup.pp +118 -0
  12. data/examples/mcx_notexists_absent.pp +4 -0
  13. data/ext/emacs/puppet-mode.el +1 -1
  14. data/lib/puppet.rb +1 -1
  15. data/lib/puppet/external/nagios/base.rb +114 -71
  16. data/lib/puppet/feature/base.rb +6 -0
  17. data/lib/puppet/indirector/yaml.rb +12 -3
  18. data/lib/puppet/module.rb +1 -1
  19. data/lib/puppet/network/client/master.rb +1 -1
  20. data/lib/puppet/network/xmlrpc/client.rb +3 -1
  21. data/lib/puppet/parameter.rb +1 -1
  22. data/lib/puppet/parser/ast.rb +15 -0
  23. data/lib/puppet/parser/ast/astarray.rb +1 -2
  24. data/lib/puppet/parser/ast/casestatement.rb +2 -0
  25. data/lib/puppet/parser/ast/collection.rb +2 -0
  26. data/lib/puppet/parser/ast/comparison_operator.rb +4 -0
  27. data/lib/puppet/parser/ast/definition.rb +2 -0
  28. data/lib/puppet/parser/ast/else.rb +3 -0
  29. data/lib/puppet/parser/ast/function.rb +19 -12
  30. data/lib/puppet/parser/ast/hostclass.rb +9 -1
  31. data/lib/puppet/parser/ast/ifstatement.rb +3 -0
  32. data/lib/puppet/parser/ast/node.rb +3 -0
  33. data/lib/puppet/parser/ast/resource.rb +3 -0
  34. data/lib/puppet/parser/ast/resource_defaults.rb +2 -0
  35. data/lib/puppet/parser/ast/resource_override.rb +3 -0
  36. data/lib/puppet/parser/ast/vardef.rb +3 -0
  37. data/lib/puppet/parser/functions.rb +14 -0
  38. data/lib/puppet/parser/functions/inline_template.rb +21 -0
  39. data/lib/puppet/parser/functions/template.rb +3 -2
  40. data/lib/puppet/parser/lexer.rb +56 -7
  41. data/lib/puppet/parser/parser.rb +114 -98
  42. data/lib/puppet/parser/parser_support.rb +24 -4
  43. data/lib/puppet/parser/resource/reference.rb +4 -3
  44. data/lib/puppet/parser/templatewrapper.rb +30 -22
  45. data/lib/puppet/property.rb +1 -1
  46. data/lib/puppet/property/list.rb +7 -2
  47. data/lib/puppet/property/ordered_list.rb +22 -0
  48. data/lib/puppet/provider/augeas/augeas.rb +189 -0
  49. data/lib/puppet/provider/computer/computer.rb +22 -0
  50. data/lib/puppet/provider/confine.rb +4 -1
  51. data/lib/puppet/provider/confine/variable.rb +13 -2
  52. data/lib/puppet/provider/confine_collection.rb +4 -1
  53. data/lib/puppet/provider/confiner.rb +1 -1
  54. data/lib/puppet/provider/group/directoryservice.rb +6 -3
  55. data/lib/puppet/provider/group/groupadd.rb +5 -2
  56. data/lib/puppet/provider/group/ldap.rb +11 -9
  57. data/lib/puppet/provider/group/netinfo.rb +8 -4
  58. data/lib/puppet/provider/group/pw.rb +5 -1
  59. data/lib/puppet/provider/host/netinfo.rb +5 -2
  60. data/lib/puppet/provider/macauthorization/macauthorization.rb +315 -0
  61. data/lib/puppet/provider/mcx/mcxcontent.rb +201 -0
  62. data/lib/puppet/provider/nameservice/directoryservice.rb +210 -107
  63. data/lib/puppet/provider/nameservice/netinfo.rb +7 -2
  64. data/lib/puppet/provider/package/appdmg.rb +0 -3
  65. data/lib/puppet/provider/package/apt.rb +6 -0
  66. data/lib/puppet/provider/package/rpm.rb +2 -0
  67. data/lib/puppet/provider/package/yum.rb +5 -1
  68. data/lib/puppet/provider/package/yumhelper.py +9 -0
  69. data/lib/puppet/provider/service/base.rb +9 -6
  70. data/lib/puppet/provider/service/daemontools.rb +25 -15
  71. data/lib/puppet/provider/service/debian.rb +6 -2
  72. data/lib/puppet/provider/service/freebsd.rb +5 -2
  73. data/lib/puppet/provider/service/gentoo.rb +6 -3
  74. data/lib/puppet/provider/service/init.rb +31 -21
  75. data/lib/puppet/provider/service/launchd.rb +195 -0
  76. data/lib/puppet/provider/service/redhat.rb +5 -2
  77. data/lib/puppet/provider/service/runit.rb +30 -20
  78. data/lib/puppet/provider/service/smf.rb +7 -4
  79. data/lib/puppet/provider/ssh_authorized_key/parsed.rb +21 -1
  80. data/lib/puppet/provider/user/directoryservice.rb +1 -0
  81. data/lib/puppet/provider/user/netinfo.rb +9 -3
  82. data/lib/puppet/provider/user/user_role_add.rb +43 -6
  83. data/lib/puppet/provider/zfs/solaris.rb +45 -0
  84. data/lib/puppet/provider/zone/solaris.rb +8 -4
  85. data/lib/puppet/provider/zpool/solaris.rb +116 -0
  86. data/lib/puppet/rails/database/003_add_environment_to_host.rb +9 -0
  87. data/lib/puppet/rails/database/schema.rb +1 -0
  88. data/lib/puppet/rails/host.rb +4 -0
  89. data/lib/puppet/reference/configuration.rb +1 -1
  90. data/lib/puppet/reports/tagmail.rb +15 -6
  91. data/lib/puppet/transaction/change.rb +3 -5
  92. data/lib/puppet/transportable.rb +1 -0
  93. data/lib/puppet/type/augeas.rb +155 -0
  94. data/lib/puppet/type/computer.rb +62 -0
  95. data/lib/puppet/type/exec.rb +2 -1
  96. data/lib/puppet/type/file.rb +1 -1
  97. data/lib/puppet/type/file/ensure.rb +8 -5
  98. data/lib/puppet/type/file/mode.rb +0 -14
  99. data/lib/puppet/type/file/owner.rb +32 -64
  100. data/lib/puppet/type/file/selcontext.rb +3 -8
  101. data/lib/puppet/type/group.rb +27 -45
  102. data/lib/puppet/type/k5login.rb +1 -1
  103. data/lib/puppet/type/macauthorization.rb +141 -0
  104. data/lib/puppet/type/mcx.rb +115 -0
  105. data/lib/puppet/type/mount.rb +1 -1
  106. data/lib/puppet/type/nagios_hostdependency.rb +3 -0
  107. data/lib/puppet/type/ssh_authorized_key.rb +16 -0
  108. data/lib/puppet/type/tidy.rb +43 -14
  109. data/lib/puppet/type/user.rb +25 -1
  110. data/lib/puppet/type/zfs.rb +51 -0
  111. data/lib/puppet/type/zone.rb +8 -0
  112. data/lib/puppet/type/zpool.rb +93 -0
  113. data/lib/puppet/util.rb +17 -38
  114. data/lib/puppet/util/file_locking.rb +44 -0
  115. data/lib/puppet/util/filetype.rb +3 -3
  116. data/lib/puppet/util/log.rb +1 -16
  117. data/lib/puppet/util/metric.rb +0 -5
  118. data/lib/puppet/util/rdoc.rb +85 -0
  119. data/lib/puppet/util/rdoc/code_objects.rb +219 -0
  120. data/lib/puppet/util/rdoc/generators/puppet_generator.rb +829 -0
  121. data/lib/puppet/util/rdoc/generators/template/puppet/puppet.rb +1051 -0
  122. data/lib/puppet/util/rdoc/parser.rb +437 -0
  123. data/lib/puppet/util/selinux.rb +135 -63
  124. data/lib/puppet/util/settings.rb +136 -126
  125. data/lib/puppet/util/storage.rb +4 -2
  126. data/spec/Rakefile +91 -0
  127. data/spec/integration/checksum.rb +47 -0
  128. data/spec/integration/defaults.rb +47 -0
  129. data/spec/integration/file_serving/configuration.rb +43 -0
  130. data/spec/integration/file_serving/content.rb +18 -0
  131. data/spec/integration/file_serving/metadata.rb +18 -0
  132. data/spec/integration/indirector/direct_file_server.rb +80 -0
  133. data/spec/integration/indirector/file_content/file_server.rb +18 -0
  134. data/spec/integration/indirector/file_metadata/file_server.rb +18 -0
  135. data/spec/integration/indirector/module_files.rb +57 -0
  136. data/spec/integration/indirector/node/ldap.rb +15 -0
  137. data/spec/integration/indirector/rest.rb +464 -0
  138. data/spec/integration/network/server/mongrel.rb +48 -0
  139. data/spec/integration/network/server/webrick.rb +48 -0
  140. data/spec/integration/node.rb +93 -0
  141. data/spec/integration/node/catalog.rb +54 -0
  142. data/spec/integration/node/facts.rb +45 -0
  143. data/spec/integration/provider/package.rb +26 -0
  144. data/spec/integration/provider/service/init.rb +32 -0
  145. data/spec/integration/reference/providers.rb +17 -0
  146. data/spec/integration/reports.rb +14 -0
  147. data/spec/integration/transaction/report.rb +26 -0
  148. data/spec/integration/type/package.rb +22 -0
  149. data/spec/integration/util/file_locking.rb +36 -0
  150. data/spec/monkey_patches/add_confine_and_runnable_to_rspec_dsl.rb +46 -0
  151. data/spec/monkey_patches/alias_should_to_must.rb +5 -0
  152. data/spec/shared_behaviours/file_server_terminus.rb +42 -0
  153. data/spec/shared_behaviours/file_serving.rb +64 -0
  154. data/spec/shared_behaviours/memory_terminus.rb +32 -0
  155. data/spec/spec.opts +5 -0
  156. data/spec/spec_helper.rb +36 -0
  157. data/spec/unit/executables/client/certhandler.rb +122 -0
  158. data/spec/unit/file_serving/configuration.rb +224 -0
  159. data/spec/unit/file_serving/configuration/parser.rb +135 -0
  160. data/spec/unit/file_serving/content.rb +71 -0
  161. data/spec/unit/file_serving/file_base.rb +124 -0
  162. data/spec/unit/file_serving/fileset.rb +239 -0
  163. data/spec/unit/file_serving/indirection_hooks.rb +124 -0
  164. data/spec/unit/file_serving/metadata.rb +187 -0
  165. data/spec/unit/file_serving/mount.rb +143 -0
  166. data/spec/unit/file_serving/terminus_helper.rb +76 -0
  167. data/spec/unit/indirector.rb +152 -0
  168. data/spec/unit/indirector/catalog/compiler.rb +156 -0
  169. data/spec/unit/indirector/catalog/yaml.rb +25 -0
  170. data/spec/unit/indirector/checksum/file.rb +139 -0
  171. data/spec/unit/indirector/code.rb +33 -0
  172. data/spec/unit/indirector/direct_file_server.rb +89 -0
  173. data/spec/unit/indirector/envelope.rb +47 -0
  174. data/spec/unit/indirector/exec.rb +51 -0
  175. data/spec/unit/indirector/facts/facter.rb +76 -0
  176. data/spec/unit/indirector/facts/yaml.rb +26 -0
  177. data/spec/unit/indirector/file.rb +154 -0
  178. data/spec/unit/indirector/file_content/file.rb +18 -0
  179. data/spec/unit/indirector/file_content/file_server.rb +18 -0
  180. data/spec/unit/indirector/file_content/modules.rb +18 -0
  181. data/spec/unit/indirector/file_content/rest.rb +11 -0
  182. data/spec/unit/indirector/file_metadata/file.rb +52 -0
  183. data/spec/unit/indirector/file_metadata/file_server.rb +18 -0
  184. data/spec/unit/indirector/file_metadata/modules.rb +42 -0
  185. data/spec/unit/indirector/file_metadata/rest.rb +9 -0
  186. data/spec/unit/indirector/file_server.rb +184 -0
  187. data/spec/unit/indirector/indirection.rb +731 -0
  188. data/spec/unit/indirector/ldap.rb +143 -0
  189. data/spec/unit/indirector/memory.rb +29 -0
  190. data/spec/unit/indirector/module_files.rb +259 -0
  191. data/spec/unit/indirector/node/exec.rb +69 -0
  192. data/spec/unit/indirector/node/ldap.rb +424 -0
  193. data/spec/unit/indirector/node/memory.rb +19 -0
  194. data/spec/unit/indirector/node/plain.rb +19 -0
  195. data/spec/unit/indirector/node/rest.rb +13 -0
  196. data/spec/unit/indirector/node/yaml.rb +25 -0
  197. data/spec/unit/indirector/plain.rb +29 -0
  198. data/spec/unit/indirector/report/processor.rb +81 -0
  199. data/spec/unit/indirector/request.rb +87 -0
  200. data/spec/unit/indirector/rest.rb +372 -0
  201. data/spec/unit/indirector/ssl_rsa/file.rb +116 -0
  202. data/spec/unit/indirector/terminus.rb +245 -0
  203. data/spec/unit/indirector/yaml.rb +145 -0
  204. data/spec/unit/module.rb +247 -0
  205. data/spec/unit/network/client.rb +45 -0
  206. data/spec/unit/network/client/master.rb +442 -0
  207. data/spec/unit/network/handler/fileserver.rb +179 -0
  208. data/spec/unit/network/http.rb +35 -0
  209. data/spec/unit/network/http/mongrel.rb +117 -0
  210. data/spec/unit/network/http/mongrel/rest.rb +377 -0
  211. data/spec/unit/network/http/mongrel/xmlrpc.rb +0 -0
  212. data/spec/unit/network/http/webrick.rb +127 -0
  213. data/spec/unit/network/http/webrick/rest.rb +323 -0
  214. data/spec/unit/network/http/webrick/xmlrpc.rb +0 -0
  215. data/spec/unit/network/http_pool.rb +238 -0
  216. data/spec/unit/network/server.rb +316 -0
  217. data/spec/unit/network/xmlrpc/client.rb +13 -0
  218. data/spec/unit/node.rb +167 -0
  219. data/spec/unit/node/catalog.rb +864 -0
  220. data/spec/unit/node/environment.rb +37 -0
  221. data/spec/unit/node/facts.rb +44 -0
  222. data/spec/unit/other/checksum.rb +92 -0
  223. data/spec/unit/other/pgraph.rb +210 -0
  224. data/spec/unit/other/transaction.rb +33 -0
  225. data/spec/unit/other/transbucket.rb +172 -0
  226. data/spec/unit/other/transobject.rb +92 -0
  227. data/spec/unit/parameter.rb +24 -0
  228. data/spec/unit/parser/ast.rb +37 -0
  229. data/spec/unit/parser/ast/arithmetic_operator.rb +73 -0
  230. data/spec/unit/parser/ast/astarray.rb +66 -0
  231. data/spec/unit/parser/ast/boolean_operator.rb +53 -0
  232. data/spec/unit/parser/ast/collexpr.rb +92 -0
  233. data/spec/unit/parser/ast/comparison_operator.rb +92 -0
  234. data/spec/unit/parser/ast/definition.rb +195 -0
  235. data/spec/unit/parser/ast/function.rb +77 -0
  236. data/spec/unit/parser/ast/hostclass.rb +148 -0
  237. data/spec/unit/parser/ast/minus.rb +36 -0
  238. data/spec/unit/parser/ast/node.rb +125 -0
  239. data/spec/unit/parser/ast/nop.rb +20 -0
  240. data/spec/unit/parser/ast/not.rb +30 -0
  241. data/spec/unit/parser/ast/resource_override.rb +51 -0
  242. data/spec/unit/parser/ast/resource_reference.rb +63 -0
  243. data/spec/unit/parser/ast/vardef.rb +47 -0
  244. data/spec/unit/parser/collector.rb +426 -0
  245. data/spec/unit/parser/compiler.rb +561 -0
  246. data/spec/unit/parser/functions.rb +83 -0
  247. data/spec/unit/parser/functions/inline_template.rb +59 -0
  248. data/spec/unit/parser/functions/template.rb +62 -0
  249. data/spec/unit/parser/interpreter.rb +138 -0
  250. data/spec/unit/parser/lexer.rb +646 -0
  251. data/spec/unit/parser/parser.rb +228 -0
  252. data/spec/unit/parser/resource.rb +336 -0
  253. data/spec/unit/parser/resource/reference.rb +95 -0
  254. data/spec/unit/parser/scope.rb +87 -0
  255. data/spec/unit/parser/templatewrapper.rb +129 -0
  256. data/spec/unit/property.rb +35 -0
  257. data/spec/unit/property/keyvalue.rb +168 -0
  258. data/spec/unit/property/list.rb +156 -0
  259. data/spec/unit/property/ordered_list.rb +64 -0
  260. data/spec/unit/provider/augeas/augeas.rb +238 -0
  261. data/spec/unit/provider/confine.rb +78 -0
  262. data/spec/unit/provider/confine/exists.rb +81 -0
  263. data/spec/unit/provider/confine/false.rb +53 -0
  264. data/spec/unit/provider/confine/feature.rb +60 -0
  265. data/spec/unit/provider/confine/true.rb +53 -0
  266. data/spec/unit/provider/confine/variable.rb +107 -0
  267. data/spec/unit/provider/confine_collection.rb +134 -0
  268. data/spec/unit/provider/confiner.rb +63 -0
  269. data/spec/unit/provider/group/groupadd.rb +31 -0
  270. data/spec/unit/provider/group/ldap.rb +105 -0
  271. data/spec/unit/provider/ldap.rb +248 -0
  272. data/spec/unit/provider/macauthorization.rb +147 -0
  273. data/spec/unit/provider/mcx/mcxcontent.rb +175 -0
  274. data/spec/unit/provider/mount.rb +130 -0
  275. data/spec/unit/provider/mount/parsed.rb +185 -0
  276. data/spec/unit/provider/package/apt.rb +138 -0
  277. data/spec/unit/provider/package/dpkg.rb +163 -0
  278. data/spec/unit/provider/package/gem.rb +87 -0
  279. data/spec/unit/provider/package/hpux.rb +52 -0
  280. data/spec/unit/provider/selboolean.rb +37 -0
  281. data/spec/unit/provider/selmodule-example.pp +0 -0
  282. data/spec/unit/provider/selmodule.rb +66 -0
  283. data/spec/unit/provider/service/daemontools.rb +124 -0
  284. data/spec/unit/provider/service/launchd.rb +134 -0
  285. data/spec/unit/provider/service/runit.rb +117 -0
  286. data/spec/unit/provider/ssh_authorized_key/parsed.rb +102 -0
  287. data/spec/unit/provider/user/hpux.rb +25 -0
  288. data/spec/unit/provider/user/ldap.rb +279 -0
  289. data/spec/unit/provider/user/user_role_add.rb +249 -0
  290. data/spec/unit/provider/user/useradd.rb +115 -0
  291. data/spec/unit/provider/zfs/solaris.rb +87 -0
  292. data/spec/unit/provider/zone/solaris.rb +42 -0
  293. data/spec/unit/provider/zpool/solaris.rb +179 -0
  294. data/spec/unit/rails.rb +125 -0
  295. data/spec/unit/relationship.rb +149 -0
  296. data/spec/unit/reports.rb +61 -0
  297. data/spec/unit/resource_reference.rb +73 -0
  298. data/spec/unit/simple_graph.rb +280 -0
  299. data/spec/unit/transaction/change.rb +187 -0
  300. data/spec/unit/transaction/event.rb +25 -0
  301. data/spec/unit/transaction/report.rb +40 -0
  302. data/spec/unit/type.rb +64 -0
  303. data/spec/unit/type/augeas.rb +113 -0
  304. data/spec/unit/type/computer.rb +82 -0
  305. data/spec/unit/type/exec.rb +91 -0
  306. data/spec/unit/type/file.rb +155 -0
  307. data/spec/unit/type/file/ensure.rb +21 -0
  308. data/spec/unit/type/file/group.rb +118 -0
  309. data/spec/unit/type/file/owner.rb +132 -0
  310. data/spec/unit/type/file/selinux.rb +82 -0
  311. data/spec/unit/type/group.rb +40 -0
  312. data/spec/unit/type/macauthorization.rb +78 -0
  313. data/spec/unit/type/mcx.rb +108 -0
  314. data/spec/unit/type/mount.rb +219 -0
  315. data/spec/unit/type/nagios.rb +63 -0
  316. data/spec/unit/type/noop_metaparam.rb +38 -0
  317. data/spec/unit/type/package.rb +246 -0
  318. data/spec/unit/type/resources.rb +27 -0
  319. data/spec/unit/type/schedule.rb +339 -0
  320. data/spec/unit/type/selboolean.rb +47 -0
  321. data/spec/unit/type/selmodule.rb +18 -0
  322. data/spec/unit/type/service.rb +254 -0
  323. data/spec/unit/type/ssh_authorized_key.rb +106 -0
  324. data/spec/unit/type/tidy.rb +68 -0
  325. data/spec/unit/type/user.rb +260 -0
  326. data/spec/unit/type/zfs.rb +45 -0
  327. data/spec/unit/type/zone.rb +20 -0
  328. data/spec/unit/type/zpool.rb +110 -0
  329. data/spec/unit/util/checksums.rb +99 -0
  330. data/spec/unit/util/constant_inflector.rb +70 -0
  331. data/spec/unit/util/file_locking.rb +115 -0
  332. data/spec/unit/util/ldap/connection.rb +169 -0
  333. data/spec/unit/util/ldap/generator.rb +54 -0
  334. data/spec/unit/util/ldap/manager.rb +654 -0
  335. data/spec/unit/util/loadedfile.rb +65 -0
  336. data/spec/unit/util/log.rb +107 -0
  337. data/spec/unit/util/metric.rb +95 -0
  338. data/spec/unit/util/nagios_maker.rb +128 -0
  339. data/spec/unit/util/posix.rb +256 -0
  340. data/spec/unit/util/resource_template.rb +58 -0
  341. data/spec/unit/util/selinux.rb +219 -0
  342. data/spec/unit/util/settings.rb +847 -0
  343. data/spec/unit/util/storage.rb +248 -0
  344. data/spec/unit/util/tagging.rb +92 -0
  345. data/spec/unit/util/uri_helper.rb +41 -0
  346. data/spec/unit/util/user_attr.rb +47 -0
  347. data/spec/unit/util/warnings.rb +35 -0
  348. data/test/certmgr/support.rb +0 -6
  349. data/test/data/providers/ssh_authorized_key/parsed/authorized_keys +1 -0
  350. data/test/data/snippets/multilinecomments.pp +6 -0
  351. data/test/data/snippets/multipleclass.pp +9 -0
  352. data/test/language/functions.rb +11 -1
  353. data/test/language/snippets.rb +16 -0
  354. data/test/lib/puppettest/runnable_test.rb +1 -1
  355. data/test/network/handler/fileserver.rb +5 -0
  356. data/test/other/report.rb +0 -4
  357. data/test/ral/type/resources.rb +2 -19
  358. data/test/util/settings.rb +4 -4
  359. data/test/util/storage.rb +0 -24
  360. data/test/util/utiltest.rb +0 -33
  361. metadata +319 -26
  362. data/conf/debian/README.source +0 -2
  363. data/conf/debian/TODO.Debian +0 -1
  364. data/conf/debian/changelog +0 -257
  365. data/conf/debian/compat +0 -1
  366. data/conf/debian/control +0 -45
  367. data/conf/debian/copyright +0 -17
  368. data/conf/debian/docs +0 -1
  369. data/conf/debian/fileserver.conf +0 -12
  370. data/conf/debian/puppet.NEWS +0 -63
  371. data/conf/debian/puppet.conf +0 -8
  372. data/conf/debian/puppet.dirs +0 -7
  373. data/conf/debian/puppet.files +0 -6
  374. data/conf/debian/puppet.init +0 -64
  375. data/conf/debian/puppet.logrotate +0 -11
  376. data/conf/debian/puppet.postinst +0 -9
  377. data/conf/debian/puppet.postrm +0 -21
  378. data/conf/debian/puppet.preinst +0 -25
  379. data/conf/debian/puppetmaster.files +0 -4
  380. data/conf/debian/puppetmaster.init +0 -58
  381. data/conf/debian/rules +0 -115
  382. data/conf/debian/watch +0 -2
  383. data/lib/puppet/type/nagios_hostgroupescalation.rb +0 -3
@@ -1,2 +0,0 @@
1
- The debian directory is now maintained on Alioth in git.
2
- See http://pkg-puppet.alioth.debian.org/ for more information.
@@ -1 +0,0 @@
1
- * clean up initscripts per http://mail.madstop.com/pipermail/puppet-dev/2006-June/001069.html
@@ -1,257 +0,0 @@
1
- puppet (0.24.1-2) unstable; urgency=low
2
-
3
- * Set rundir correctly (Closes: #460203, #459579)
4
- * Apply patch for puppet#1003 to enable collection of tagged resources
5
-
6
- -- Thom May <thom@debian.org> Wed, 16 Jan 2008 11:08:55 +0100
7
-
8
- puppet (0.24.1-1) unstable; urgency=low
9
-
10
- * New upstream release (Closes: #445626)
11
- * Set maintainer to pkg-puppet-devel
12
-
13
- -- Thom May <thom@debian.org> Sun, 30 Dec 2007 19:13:47 +0100
14
-
15
- puppet (0.24.0-1) unstable; urgency=low
16
-
17
- * New upstream release
18
-
19
- -- Thom May <thom@debian.org> Wed, 19 Dec 2007 16:00:34 +0100
20
-
21
- puppet (0.23.2-15) unstable; urgency=low
22
-
23
- * No change upload setting maintainer to me whilst waiting for an alioth
24
- project.
25
-
26
- -- Thom May <thom@debian.org> Thu, 29 Nov 2007 10:44:50 +0100
27
-
28
- puppet (0.23.2-14) unstable; urgency=low
29
-
30
- * Orphaning.
31
- * Create /var/lib/puppet in the puppet package. Closes: #452506.
32
- * Start the puppet init script after puppetmaster, to silence whiny bug
33
- reports. Closes: #452064.
34
- * Add a reload command to the Puppet init script. Closes: #452060.
35
-
36
- -- Matthew Palmer <mpalmer@debian.org> Thu, 29 Nov 2007 10:48:21 +1100
37
-
38
- puppet (0.23.2-13) unstable; urgency=low
39
-
40
- * Drop quotes from an already-quoted value in a query. Closes: #448179.
41
- * Remove excessive quoting from puppet/network/handler/master.rb.
42
- Closes: #448221.
43
- * Force removal of directories during pluginsync. Closes: #448180.
44
-
45
- -- Matthew Palmer <mpalmer@debian.org> Tue, 30 Oct 2007 14:55:19 +1100
46
-
47
- puppet (0.23.2-12) unstable; urgency=low
48
-
49
- * Create /var/run/puppet and set the perms in the various initscripts, as
50
- well as hardcoding the rundir better in configuration.rb and removing
51
- the explicit rundir setting from puppet.conf. Closes: #447314.
52
- * Apply additional patch given (backwards) to fix export/collect on some
53
- database backends. Closes: #445591 (again!)
54
-
55
- -- Matthew Palmer <mpalmer@debian.org> Sat, 20 Oct 2007 11:28:50 +1000
56
-
57
- puppet (0.23.2-11) unstable; urgency=low
58
-
59
- * Apply patch from puppet#786 to fix a problem with exported resources not
60
- being properly detected as needing a rerun. Closes: #445591.
61
- * Fix ignore handling for the plugins mount. Closes: #446390.
62
-
63
- -- Matthew Palmer <mpalmer@debian.org> Mon, 15 Oct 2007 09:11:25 +1000
64
-
65
- puppet (0.23.2-10) unstable; urgency=low
66
-
67
- * Recycle connections when we change (or get) certs.
68
- * Catch and retry more transient errors in the XMLRPC wrapper.
69
-
70
- -- Matthew Palmer <mpalmer@debian.org> Thu, 27 Sep 2007 15:06:11 +1000
71
-
72
- puppet (0.23.2-9) unstable; urgency=low
73
-
74
- * Recycle the HTTP connection if we get an EPIPE during a request.
75
- Closes: #444177. Thanks to Jos Backus for helping with testing.
76
-
77
- -- Matthew Palmer <mpalmer@debian.org> Thu, 27 Sep 2007 09:55:34 +1000
78
-
79
- puppet (0.23.2-8) unstable; urgency=low
80
-
81
- * Remove extraneous debugging output accidentally left behind in the last
82
- release.
83
- * Fix spelling mistakes in debian/control and debian/puppet.preinst.
84
- Closes: #444158.
85
-
86
- -- Matthew Palmer <mpalmer@debian.org> Thu, 27 Sep 2007 07:45:07 +1000
87
-
88
- puppet (0.23.2-7) unstable; urgency=low
89
-
90
- * Ignore ENOENT errors in the module plugin syncing code, since they're
91
- innocuous and expected.
92
- * Allow facts that are downloaded through pluginsync to be used like any
93
- other fact.
94
- * Allow users to still have an old-style plugins mount if they want, by
95
- specifying a path for the mount. Also track down a fault in old-style
96
- fileserving which did strange slash-stripping. Closes: #443932.
97
-
98
- -- Matthew Palmer <mpalmer@debian.org> Tue, 25 Sep 2007 16:41:32 +1000
99
-
100
- puppet (0.23.2-6) unstable; urgency=low
101
-
102
- * Patch rails/param_name.rb to stop query failures, as per puppet#784.
103
- * Actually honour namevar.
104
- * Only set dbuser if explicitly asked for.
105
- * Fix annoying database deletion error for ParamValue objects.
106
- * Add an accessor for ca_file, since older openssl-ruby only had a writer.
107
- * Fix the fileserver to honour ignore. Thanks to Nathan Ward for the
108
- bug report on IRC.
109
-
110
- -- Matthew Palmer <mpalmer@debian.org> Thu, 20 Sep 2007 16:10:41 +1000
111
-
112
- puppet (0.23.2-5) unstable; urgency=low
113
-
114
- * Add some NEWS for the ssldir transition. Should have done that earlier.
115
- * Remove the explicit mode change for vardir, and fix up the mode on
116
- statedir, as well. Closes: #425496.
117
- * Only set some database parameters if they're explicitly set; this makes
118
- life easier for PgSQL ident auth.
119
- * Allow empty config options.
120
-
121
- -- Matthew Palmer <mpalmer@debian.org> Thu, 13 Sep 2007 11:09:59 +1000
122
-
123
- puppet (0.23.2-4) unstable; urgency=low
124
-
125
- * Fix puppet#776 in a slightly better way by only flushing the cache when
126
- a value is changed, rather than whenever a value is read.
127
- * Apply patch from puppet#755 to cache connections to the Puppetmaster,
128
- which improves performance by more than a little.
129
- * Modify the fileserver so that it provides a 'plugins' mount which
130
- exports the union of the plugins directory of all modules.
131
-
132
- -- Matthew Palmer <mpalmer@debian.org> Fri, 31 Aug 2007 15:32:04 +1000
133
-
134
- puppet (0.23.2-3) unstable; urgency=low
135
-
136
- * Clear the config value cache every time. This is a titchy little
137
- performance hit, but it works around puppet#776 rather nicely.
138
-
139
- -- Matthew Palmer <mpalmer@debian.org> Fri, 24 Aug 2007 16:08:04 +1000
140
-
141
- puppet (0.23.2-2) unstable; urgency=low
142
-
143
- * Move the SSL state directory to a more policy-friendly location,
144
- /var/lib/puppet/ssl.
145
-
146
- -- Matthew Palmer <mpalmer@debian.org> Tue, 21 Aug 2007 12:54:40 +1000
147
-
148
- puppet (0.23.2-1) unstable; urgency=low
149
-
150
- * New upstream release.
151
-
152
- -- Matthew Palmer <mpalmer@debian.org> Tue, 7 Aug 2007 12:47:49 +1000
153
-
154
- puppet (0.23.1-1) unstable; urgency=low
155
-
156
- * New upstream release.
157
- * Switch primary maintainer to me. Thanks jaq.
158
- * Make the recommendation for rails >= 1.2.3-2, to avoid
159
- incompatibilities. This breaks compatibility with stable, but the rails
160
- package from unstable should install cleanly in stable. Closes: #433999
161
-
162
- -- Matthew Palmer <mpalmer@debian.org> Sat, 21 Jul 2007 16:34:36 +1000
163
-
164
- puppet (0.23.0-1) unstable; urgency=low
165
-
166
- * New upstream release.
167
- - Includes a new configuration file handling system; see NEWS.Debian.
168
-
169
- -- Matthew Palmer <mpalmer@debian.org> Mon, 25 Jun 2007 09:55:12 +1000
170
-
171
- puppet (0.22.4-2) unstable; urgency=low
172
-
173
- * Depend on libshadow-ruby1.8, for new password modification functionality
174
- added to upstream 0.22.4.
175
- * Several improvements from Micah Anderson:
176
- - Better vim syntax installation process.
177
- - Install Emacs syntax highlighting.
178
- - Install logcheck rules. Closes: #421851.
179
-
180
- -- Matthew Palmer <mpalmer@debian.org> Thu, 3 May 2007 15:04:15 +1000
181
-
182
- puppet (0.22.4-1) unstable; urgency=low
183
-
184
- * New upstream release.
185
-
186
- -- Matthew Palmer <mpalmer@debian.org> Wed, 2 May 2007 12:20:15 +1000
187
-
188
- puppet (0.22.3-1) unstable; urgency=low
189
-
190
- * New upstream release. Closes: #415773.
191
- * Switch to using our own logrotate config, and enhance it as per
192
- David Schmitt's suggestions. Closes: #414282.
193
- * Add puppetrun to the puppetmaster package, and actually put puppetdoc
194
- into the puppet package. Closes: #419273.
195
- * Copy vim syntax highlighting file into the puppet package, and add a
196
- stanza to have Vim automatically highlight .pp files. Closes: #412868.
197
- Thanks to David Schmitt for researching how to do all of that.
198
- * Add a templatedir setting to the default puppetmasterd.conf to make it
199
- obvious that it can be changed. Closes: #407506.
200
-
201
- -- Matthew Palmer <mpalmer@debian.org> Wed, 18 Apr 2007 14:03:33 +1000
202
-
203
- puppet (0.22.1-1) unstable; urgency=low
204
-
205
- * New upstream release.
206
-
207
- -- Matthew Palmer <mpalmer@debian.org> Fri, 2 Feb 2007 09:06:46 +1100
208
-
209
- puppet (0.22.0-1) unstable; urgency=low
210
-
211
- * New upstream release.
212
- * Use --startas instead of --init in init scripts, which (according to
213
- Paul Hampson) makes checking for already-running instances work.
214
- Closes: #405912.
215
-
216
- -- Matthew Palmer <mpalmer@debian.org> Mon, 8 Jan 2007 08:41:35 +1100
217
-
218
- puppet (0.20.1-1) unstable; urgency=low
219
-
220
- * New upstream release. (Closes: #387674)
221
- * Rationalise the puppetmasterd init script.
222
- * Add inclusion of /etc/default files for init scripts. (Closes: #388178)
223
- * Add puppet.conf to match puppetd.conf. (Closes: #385646)
224
-
225
- -- Matthew Palmer <mpalmer@debian.org> Thu, 30 Nov 2006 10:54:19 +1100
226
-
227
- puppet (0.18.4-1) unstable; urgency=low
228
-
229
- * New upstream release.
230
- - Properly detect all services, including those in rcS.d.
231
- (Closes: #378351)
232
- * Add Homepage: to the long description. (Closes: #377896)
233
-
234
- -- Matthew Palmer <mpalmer@debian.org> Mon, 24 Jul 2006 19:46:06 +1000
235
-
236
- puppet (0.18.3-1) unstable; urgency=low
237
-
238
- * New upstream version.
239
- - Set DEBIAN_FRONTEND=noninteractive when installing Debian packages.
240
- (Closes: #378338)
241
-
242
- -- Matthew Palmer <mpalmer@debian.org> Sun, 16 Jul 2006 10:58:50 +1000
243
-
244
- puppet (0.18.1-1) unstable; urgency=low
245
-
246
- * Make Puppet not wait for a cert at all (to prevent startup hangs).
247
- * Cleanup the init scripts to not have NO_START detritus.
248
- * Apply puppet.debian-frontend, to set DEBIAN_FRONTEND=noninteractive on
249
- package installation.
250
-
251
- -- Matthew Palmer <mpalmer@debian.org> Tue, 27 Jun 2006 15:05:32 +1000
252
-
253
- puppet (0.18.0-1) unstable; urgency=low
254
-
255
- * Initial release. (Closes: #348625)
256
-
257
- -- Matthew Palmer <mpalmer@debian.org> Wed, 24 May 2006 13:10:01 +1000
@@ -1 +0,0 @@
1
- 4
@@ -1,45 +0,0 @@
1
- Source: puppet
2
- Section: admin
3
- Priority: optional
4
- Maintainer: Puppet Package Maintainers <pkg-puppet-devel@lists.alioth.debian.org>
5
- Uploaders: Thom May <thom@debian.org>
6
- Build-Depends-Indep: debhelper (>= 4.0.0), ruby (>= 1.8.1)
7
- Standards-Version: 3.6.2
8
-
9
- Package: puppet
10
- Architecture: all
11
- Depends: ruby (>= 1.8.1), libxmlrpc-ruby, libopenssl-ruby, libshadow-ruby1.8, adduser, facter, lsb-base
12
- Recommends: rdoc
13
- Description: centralised configuration management for networks
14
- Puppet lets you centrally manage every important aspect of your system
15
- using a cross-platform specification language that manages all the
16
- separate elements normally aggregated in different files, like users,
17
- cron jobs, and hosts, along with obviously discrete elements like
18
- packages, services, and files.
19
- .
20
- Puppet's simple declarative specification language provides powerful
21
- classing abilities for drawing out the similarities between hosts while
22
- allowing them to be as specific as necessary, and it handles dependency
23
- and prerequisite relationships between objects clearly and explicitly.
24
- .
25
- Homepage: http://reductivelabs.com/projects/puppet
26
-
27
- Package: puppetmaster
28
- Architecture: all
29
- Depends: ruby (>= 1.8.1), puppet (= ${Source-Version}), facter, lsb-base
30
- Recommends: rails (>= 1.2.3-2), rdoc
31
- Description: centralised configuration management control daemon
32
- Puppet lets you centrally manage every important aspect of your system
33
- using a cross-platform specification language that manages all the
34
- separate elements normally aggregated in different files, like users,
35
- cron jobs, and hosts, along with obviously discrete elements like
36
- packages, services, and files.
37
- .
38
- Puppet's simple declarative specification language provides powerful
39
- classing abilities for drawing out the similarities between hosts while
40
- allowing them to be as specific as necessary, and it handles dependency
41
- and prerequisite relationships between objects clearly and explicitly.
42
- .
43
- This package contains the manifest server, 'puppetmaster'.
44
- .
45
- Homepage: http://reductivelabs.com/projects/puppet
@@ -1,17 +0,0 @@
1
- This package was debianized by Jamie Wilkinson <jaq@debian.org> on
2
- Thu, 27 Apr 2006 10:18:04 +1000.
3
-
4
- It was downloaded from http://reductivelabs.com/downloads/puppet
5
-
6
- Copyright Holder: Luke Kanies <luke@madstop.com>
7
-
8
- License:
9
-
10
- From
11
- http://reductivelabs.com/documents/faq#what-license-is-puppet-released-under:
12
-
13
- Puppet is open source and is released under the GNU Public License.
14
-
15
- On Debian systems, the complete text of the GNU General
16
- Public License can be found in `/usr/share/common-licenses/GPL'.
17
-
@@ -1 +0,0 @@
1
- README
@@ -1,12 +0,0 @@
1
- # This file consists of arbitrarily named sections/modules
2
- # defining where files are served from and to whom
3
-
4
- # Define a section 'files'
5
- # Adapt the allow/deny settings to your needs. Order
6
- # for allow/deny does not matter, allow always takes precedence
7
- # over deny
8
- [files]
9
- path /etc/puppet/files
10
- # allow *.example.com
11
- # deny *.evil.example.com
12
- # allow 192.168.0.0/24
@@ -1,63 +0,0 @@
1
- puppet (0.23.2-12) unstable; urgency=low
2
-
3
- * Handling of the rundir setting has been changed; we now store PID files
4
- in /var/run/puppet, and the initscripts have been modified to ensure
5
- that this directory exists on startup. It is no longer necessary to set
6
- rundir explicitly in /etc/puppet/puppet.conf, and you should ensure that
7
- you have no explicit rundir setting in your puppet.conf unless you want
8
- to use a custom rundir setting for your own local purposes.
9
-
10
- -- Matthew Palmer <mpalmer@debian.org> Sat, 20 Oct 2007 11:58:58 +1000
11
-
12
- puppet (0.23.2-3) unstable; urgency=low
13
-
14
- * This version of Puppet makes a fairly major change to the location of
15
- the CA and certificates, from /etc/puppet/ssl to the more FHS-compliant
16
- location /var/lib/puppet/ssl. This is to be both policy-compliant and
17
- to match the location of the ssldir in other distributions.
18
-
19
- If you have transitioned to using the consolidated puppet.conf config
20
- file, there should be no problems. If you are using a stock
21
- puppet.conf, the change should be made for you automatically, while if
22
- you've customised puppet.conf the ssldir will be left where it is and
23
- you should transition to the new location manually.
24
-
25
- The only source of problems is if you're still using per-program config
26
- files (puppetd.conf, puppetmasterd.conf, etc). I haven't been able to
27
- work out a damage-free way of transitioning to the new location, so
28
- things will likely break for you -- ssldir will have been moved to
29
- /var/lib/puppet/ssl, but your puppet programs will use the
30
- old config file (with the default ssldir of /etc/puppet/ssl. In this
31
- case, you'll likely get all sorts of certificate-related problems.
32
-
33
- The solution is to either switch to using puppet.conf (which is
34
- necessary anyway because support for the deprecated per-program config
35
- files will be going away sometime) with the new ssldir setting, or add
36
- the ssldir setting to all your per-program config files (this includes
37
- creating them for programs that don't already have a config file, like
38
- puppetca.conf). Then delete /etc/puppet/ssl (since it's not needed) and
39
- use the existing SSL data that was moved to /var/lib/puppet/ssl.
40
-
41
- -- Matthew Palmer <mpalmer@debian.org> Fri, 24 Aug 2007 16:08:04 +1000
42
-
43
- puppet (0.23.0-1) unstable; urgency=low
44
-
45
- * As of upstream 0.23.0, the configuration file layout has been largely
46
- revamped. Now, instead of having one file per program, there is now
47
- a single file, /etc/puppet/puppet.conf, which contains sections for
48
- each program, as well as a "main" section that sets global config
49
- options relevant for all programs.
50
-
51
- See http://reductivelabs.com/trac/puppet/wiki/ConfigurationReference for
52
- more info.
53
-
54
- For backwards compatibility, all programs still read the per-program
55
- configuration files, and will ignore the generic puppet.conf file if the
56
- per-program file still exists. To prevent accidents, you will need to
57
- do the configuration change manually, by rewriting puppet.conf to match
58
- your local configuration parameters and then deleting the old files. If
59
- you haven't changed any config parameters, then it should be as simple
60
- as deleting puppetd.conf and puppetmasterd.conf and restarting the
61
- daemons, as the configuration itself hasn't changed between versions.
62
-
63
- -- Matthew Palmer <mpalmer@debian.org> Mon, 25 Jun 2007 10:43:53 +1000
@@ -1,8 +0,0 @@
1
- [main]
2
- logdir=/var/log/puppet
3
- vardir=/var/lib/puppet
4
- ssldir=/var/lib/puppet/ssl
5
- rundir=/var/run/puppet
6
-
7
- [puppetmasterd]
8
- templatedir=/var/lib/puppet/templates
@@ -1,7 +0,0 @@
1
- usr/sbin
2
- usr/lib/ruby/1.8
3
- var/log/puppet
4
- etc/puppet/files
5
- usr/share/vim/addons/ftdetect
6
- usr/share/vim/vim71/syntax
7
- var/lib/puppet
@@ -1,6 +0,0 @@
1
- usr/bin/puppet
2
- usr/bin/puppetdoc
3
- usr/sbin/puppetd
4
- usr/lib/ruby/1.8/
5
- var/log/puppet
6
- etc/puppet/puppet.conf
@@ -1,64 +0,0 @@
1
- #! /bin/sh
2
-
3
- PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
4
- DAEMON=/usr/sbin/puppetd
5
- DAEMON_OPTS="-w 0"
6
- NAME=puppetd
7
- DESC="puppet configuration management tool"
8
-
9
- test -x $DAEMON || exit 0
10
-
11
- [ -r /etc/default/puppet ] && . /etc/default/puppet
12
-
13
- . /lib/lsb/init-functions
14
-
15
- reload_puppet() {
16
- start-stop-daemon --stop --quiet --signal HUP --pidfile /var/run/puppet/$NAME.pid
17
- }
18
-
19
- start_puppet() {
20
- start-stop-daemon --start --quiet --pidfile /var/run/puppet/$NAME.pid \
21
- --startas $DAEMON -- $DAEMON_OPTS
22
- }
23
-
24
- stop_puppet() {
25
- start-stop-daemon --stop --quiet --pidfile /var/run/puppet/$NAME.pid
26
- }
27
-
28
- if [ ! -d /var/run/puppet ]; then
29
- rm -rf /var/run/puppet
30
- mkdir -p /var/run/puppet
31
- fi
32
-
33
- chown puppet:puppet /var/run/puppet
34
-
35
- case "$1" in
36
- start)
37
- log_begin_msg "Starting $DESC"
38
- start_puppet
39
- log_end_msg 0
40
- ;;
41
- stop)
42
- log_begin_msg "Stopping $DESC"
43
- stop_puppet
44
- log_end_msg 0
45
- ;;
46
- reload)
47
- log_begin_msg "Reloading $DESC"
48
- reload_puppet
49
- log_end_msg 0
50
- ;;
51
- restart|force-reload)
52
- log_begin_msg "Restarting $DESC"
53
- stop_puppet
54
- sleep 1
55
- start_puppet
56
- log_end_msg 0
57
- ;;
58
- *)
59
- echo "Usage: $0 {start|stop|restart|force-reload|reload}" >&2
60
- exit 1
61
- ;;
62
- esac
63
-
64
- exit 0