puppet 7.9.0-x64-mingw32 → 7.12.1-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (292) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +2 -2
  3. data/Gemfile.lock +12 -12
  4. data/{ext → examples/enc}/regexp_nodes/classes/databases +0 -0
  5. data/{ext → examples/enc}/regexp_nodes/classes/webservers +0 -0
  6. data/{ext → examples/enc}/regexp_nodes/environment/development +0 -0
  7. data/{ext → examples/enc}/regexp_nodes/parameters/service/prod +0 -0
  8. data/{ext → examples/enc}/regexp_nodes/parameters/service/qa +0 -0
  9. data/{ext → examples/enc}/regexp_nodes/parameters/service/sandbox +0 -0
  10. data/{ext → examples/enc}/regexp_nodes/regexp_nodes.rb +0 -0
  11. data/{ext → examples}/nagios/check_puppet.rb +2 -2
  12. data/ext/README.md +13 -0
  13. data/lib/puppet/application/agent.rb +4 -0
  14. data/lib/puppet/application/apply.rb +20 -2
  15. data/lib/puppet/application/resource.rb +15 -13
  16. data/lib/puppet/concurrent/thread_local_singleton.rb +1 -0
  17. data/lib/puppet/configurer.rb +236 -58
  18. data/lib/puppet/confine/variable.rb +1 -1
  19. data/lib/puppet/defaults.rb +66 -29
  20. data/lib/puppet/environments.rb +66 -26
  21. data/lib/puppet/facter_impl.rb +96 -0
  22. data/lib/puppet/file_serving/configuration/parser.rb +2 -0
  23. data/lib/puppet/file_serving/configuration.rb +2 -0
  24. data/lib/puppet/file_serving/mount/file.rb +4 -4
  25. data/lib/puppet/file_serving/mount/scripts.rb +24 -0
  26. data/lib/puppet/file_system/file_impl.rb +3 -1
  27. data/lib/puppet/file_system.rb +2 -1
  28. data/lib/puppet/forge.rb +1 -1
  29. data/lib/puppet/functions/find_template.rb +2 -2
  30. data/lib/puppet/http/client.rb +1 -1
  31. data/lib/puppet/http/redirector.rb +5 -0
  32. data/lib/puppet/http/service/compiler.rb +6 -1
  33. data/lib/puppet/indirector/catalog/compiler.rb +24 -6
  34. data/lib/puppet/indirector/catalog/rest.rb +1 -0
  35. data/lib/puppet/indirector/facts/facter.rb +6 -6
  36. data/lib/puppet/indirector/indirection.rb +1 -1
  37. data/lib/puppet/indirector/terminus.rb +4 -0
  38. data/lib/puppet/module/plan.rb +0 -1
  39. data/lib/puppet/module/task.rb +1 -1
  40. data/lib/puppet/module_tool/applications/installer.rb +8 -4
  41. data/lib/puppet/module_tool/applications/uninstaller.rb +1 -1
  42. data/lib/puppet/module_tool/applications/upgrader.rb +1 -1
  43. data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
  44. data/lib/puppet/node/environment.rb +10 -11
  45. data/lib/puppet/pal/pal_impl.rb +1 -1
  46. data/lib/puppet/parser/resource.rb +1 -1
  47. data/lib/puppet/parser/scope.rb +8 -7
  48. data/lib/puppet/parser/templatewrapper.rb +1 -0
  49. data/lib/puppet/pops/evaluator/closure.rb +7 -5
  50. data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +1 -0
  51. data/lib/puppet/pops/lookup/lookup_adapter.rb +3 -2
  52. data/lib/puppet/pops/model/ast.rb +1 -0
  53. data/lib/puppet/pops/model/factory.rb +14 -13
  54. data/lib/puppet/pops/parser/egrammar.ra +2 -2
  55. data/lib/puppet/pops/parser/eparser.rb +752 -753
  56. data/lib/puppet/pops/parser/lexer2.rb +69 -68
  57. data/lib/puppet/pops/parser/slurp_support.rb +1 -0
  58. data/lib/puppet/pops/serialization/to_data_converter.rb +18 -6
  59. data/lib/puppet/pops/serialization/to_stringified_converter.rb +1 -1
  60. data/lib/puppet/pops/types/type_formatter.rb +7 -6
  61. data/lib/puppet/pops/types/types.rb +1 -1
  62. data/lib/puppet/provider/aix_object.rb +1 -1
  63. data/lib/puppet/provider/group/groupadd.rb +5 -2
  64. data/lib/puppet/provider/package/pkg.rb +19 -2
  65. data/lib/puppet/provider/package/puppet_gem.rb +1 -1
  66. data/lib/puppet/provider/package/puppetserver_gem.rb +1 -1
  67. data/lib/puppet/provider/package/yum.rb +1 -1
  68. data/lib/puppet/provider/service/base.rb +1 -1
  69. data/lib/puppet/provider/service/init.rb +5 -5
  70. data/lib/puppet/provider/service/launchd.rb +2 -2
  71. data/lib/puppet/provider/service/redhat.rb +1 -1
  72. data/lib/puppet/provider/service/smf.rb +3 -3
  73. data/lib/puppet/provider/service/systemd.rb +2 -2
  74. data/lib/puppet/provider/service/upstart.rb +5 -5
  75. data/lib/puppet/provider/user/aix.rb +44 -1
  76. data/lib/puppet/provider/user/directoryservice.rb +1 -1
  77. data/lib/puppet/provider/user/useradd.rb +72 -16
  78. data/lib/puppet/provider.rb +1 -1
  79. data/lib/puppet/reference/providers.rb +2 -2
  80. data/lib/puppet/resource/catalog.rb +1 -1
  81. data/lib/puppet/resource/type_collection.rb +2 -1
  82. data/lib/puppet/resource.rb +38 -5
  83. data/lib/puppet/runtime.rb +11 -1
  84. data/lib/puppet/settings/file_setting.rb +3 -8
  85. data/lib/puppet/settings.rb +2 -2
  86. data/lib/puppet/test/test_helper.rb +4 -1
  87. data/lib/puppet/transaction/persistence.rb +11 -1
  88. data/lib/puppet/transaction/report.rb +15 -1
  89. data/lib/puppet/type/exec.rb +19 -2
  90. data/lib/puppet/type/file.rb +6 -6
  91. data/lib/puppet/type/filebucket.rb +2 -2
  92. data/lib/puppet/type/group.rb +0 -1
  93. data/lib/puppet/type/resources.rb +1 -1
  94. data/lib/puppet/type/service.rb +8 -3
  95. data/lib/puppet/type/user.rb +0 -1
  96. data/lib/puppet/type.rb +1 -1
  97. data/lib/puppet/util/autoload.rb +1 -1
  98. data/lib/puppet/util/command_line.rb +1 -1
  99. data/lib/puppet/util/filetype.rb +2 -2
  100. data/lib/puppet/util/json.rb +3 -0
  101. data/lib/puppet/util/log.rb +1 -2
  102. data/lib/puppet/util/logging.rb +1 -25
  103. data/lib/puppet/util/pidlock.rb +1 -1
  104. data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +1 -1
  105. data/lib/puppet/util/suidmanager.rb +1 -2
  106. data/lib/puppet/util/tagging.rb +1 -0
  107. data/lib/puppet/util/windows/service.rb +0 -5
  108. data/lib/puppet/util/windows/user.rb +0 -1
  109. data/lib/puppet/util/windows.rb +3 -0
  110. data/lib/puppet/util.rb +4 -3
  111. data/lib/puppet/version.rb +1 -1
  112. data/lib/puppet.rb +2 -6
  113. data/locales/puppet.pot +265 -221
  114. data/man/man5/puppet.conf.5 +73 -25
  115. data/man/man8/puppet-agent.8 +4 -1
  116. data/man/man8/puppet-apply.8 +1 -1
  117. data/man/man8/puppet-catalog.8 +1 -1
  118. data/man/man8/puppet-config.8 +1 -1
  119. data/man/man8/puppet-describe.8 +1 -1
  120. data/man/man8/puppet-device.8 +1 -1
  121. data/man/man8/puppet-doc.8 +1 -1
  122. data/man/man8/puppet-epp.8 +1 -1
  123. data/man/man8/puppet-facts.8 +1 -1
  124. data/man/man8/puppet-filebucket.8 +1 -1
  125. data/man/man8/puppet-generate.8 +1 -1
  126. data/man/man8/puppet-help.8 +1 -1
  127. data/man/man8/puppet-lookup.8 +1 -1
  128. data/man/man8/puppet-module.8 +3 -3
  129. data/man/man8/puppet-node.8 +1 -1
  130. data/man/man8/puppet-parser.8 +1 -1
  131. data/man/man8/puppet-plugin.8 +1 -1
  132. data/man/man8/puppet-report.8 +1 -1
  133. data/man/man8/puppet-resource.8 +1 -1
  134. data/man/man8/puppet-script.8 +1 -1
  135. data/man/man8/puppet-ssl.8 +1 -1
  136. data/man/man8/puppet.8 +2 -2
  137. data/spec/fixtures/integration/application/agent/cached_deferred_catalog.json +2 -1
  138. data/spec/fixtures/integration/application/agent/lib/facter/agent_spec_role.rb +3 -0
  139. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Gemfile +4 -0
  140. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Rakefile +3 -0
  141. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/lib/puppet/functions/l10n.rb +8 -0
  142. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/config.yaml +25 -0
  143. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/ja/puppet-l10n.po +19 -0
  144. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/puppet-l10n.pot +20 -0
  145. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/metadata.json +8 -0
  146. data/spec/integration/application/agent_spec.rb +146 -52
  147. data/spec/integration/application/filebucket_spec.rb +5 -0
  148. data/spec/integration/configurer_spec.rb +18 -2
  149. data/spec/integration/indirector/facts/facter_spec.rb +3 -3
  150. data/spec/integration/l10n/compiler_spec.rb +37 -0
  151. data/spec/integration/parser/pcore_resource_spec.rb +10 -0
  152. data/spec/integration/transaction/report_spec.rb +1 -1
  153. data/spec/integration/type/file_spec.rb +2 -2
  154. data/spec/integration/type/package_spec.rb +6 -6
  155. data/spec/integration/util/rdoc/parser_spec.rb +1 -1
  156. data/spec/integration/util/windows/process_spec.rb +1 -9
  157. data/spec/lib/puppet_spec/modules.rb +13 -2
  158. data/spec/lib/puppet_spec/puppetserver.rb +15 -0
  159. data/spec/shared_behaviours/documentation_on_faces.rb +0 -2
  160. data/spec/shared_contexts/l10n.rb +27 -0
  161. data/spec/spec_helper.rb +1 -10
  162. data/spec/unit/application/apply_spec.rb +76 -56
  163. data/spec/unit/application/resource_spec.rb +29 -0
  164. data/spec/unit/configurer_spec.rb +353 -57
  165. data/spec/unit/environments_spec.rb +150 -1
  166. data/spec/unit/facter_impl_spec.rb +31 -0
  167. data/spec/unit/file_bucket/dipper_spec.rb +2 -2
  168. data/spec/unit/file_serving/configuration/parser_spec.rb +23 -0
  169. data/spec/unit/file_serving/configuration_spec.rb +12 -4
  170. data/spec/unit/file_serving/mount/scripts_spec.rb +69 -0
  171. data/spec/unit/file_system_spec.rb +7 -0
  172. data/spec/unit/functions/logging_spec.rb +1 -0
  173. data/spec/unit/functions/lookup_spec.rb +64 -0
  174. data/spec/unit/http/client_spec.rb +58 -1
  175. data/spec/unit/http/service/compiler_spec.rb +8 -0
  176. data/spec/unit/indirector/catalog/compiler_spec.rb +87 -0
  177. data/spec/unit/indirector/catalog/rest_spec.rb +8 -0
  178. data/spec/unit/indirector/indirection_spec.rb +10 -3
  179. data/spec/unit/interface/action_spec.rb +0 -9
  180. data/spec/unit/module_spec.rb +14 -0
  181. data/spec/unit/module_tool/applications/installer_spec.rb +39 -12
  182. data/spec/unit/network/formats_spec.rb +6 -0
  183. data/spec/unit/pops/parser/parse_containers_spec.rb +0 -11
  184. data/spec/unit/pops/serialization/to_from_hr_spec.rb +58 -0
  185. data/spec/unit/pops/serialization/to_stringified_spec.rb +5 -0
  186. data/spec/unit/pops/types/type_calculator_spec.rb +6 -0
  187. data/spec/unit/provider/package/gem_spec.rb +1 -1
  188. data/spec/unit/provider/package/pip2_spec.rb +1 -1
  189. data/spec/unit/provider/package/pip3_spec.rb +1 -1
  190. data/spec/unit/provider/package/pip_spec.rb +1 -1
  191. data/spec/unit/provider/package/pkg_spec.rb +34 -5
  192. data/spec/unit/provider/package/puppet_gem_spec.rb +1 -1
  193. data/spec/unit/provider/package/puppetserver_gem_spec.rb +1 -1
  194. data/spec/unit/provider/service/launchd_spec.rb +11 -0
  195. data/spec/unit/provider/service/systemd_spec.rb +1 -1
  196. data/spec/unit/provider/user/aix_spec.rb +100 -0
  197. data/spec/unit/provider/user/directoryservice_spec.rb +1 -1
  198. data/spec/unit/provider/user/useradd_spec.rb +43 -2
  199. data/spec/unit/provider_spec.rb +4 -4
  200. data/spec/unit/puppet_spec.rb +12 -4
  201. data/spec/unit/resource/catalog_spec.rb +14 -1
  202. data/spec/unit/resource_spec.rb +58 -2
  203. data/spec/unit/settings/file_setting_spec.rb +10 -7
  204. data/spec/unit/type/service_spec.rb +27 -0
  205. data/spec/unit/type_spec.rb +2 -2
  206. data/spec/unit/util/autoload_spec.rb +25 -8
  207. data/spec/unit/util/logging_spec.rb +2 -0
  208. data/tasks/parallel.rake +3 -3
  209. metadata +37 -94
  210. data/ext/README.environment +0 -8
  211. data/ext/dbfix.sql +0 -132
  212. data/ext/debian/README.Debian +0 -8
  213. data/ext/debian/README.source +0 -2
  214. data/ext/debian/TODO.Debian +0 -1
  215. data/ext/debian/changelog.erb +0 -1122
  216. data/ext/debian/compat +0 -1
  217. data/ext/debian/control +0 -144
  218. data/ext/debian/copyright +0 -339
  219. data/ext/debian/docs +0 -1
  220. data/ext/debian/fileserver.conf +0 -41
  221. data/ext/debian/puppet-common.dirs +0 -13
  222. data/ext/debian/puppet-common.install +0 -3
  223. data/ext/debian/puppet-common.lintian-overrides +0 -5
  224. data/ext/debian/puppet-common.manpages +0 -28
  225. data/ext/debian/puppet-common.postinst +0 -35
  226. data/ext/debian/puppet-common.postrm +0 -33
  227. data/ext/debian/puppet-el.dirs +0 -1
  228. data/ext/debian/puppet-el.emacsen-install +0 -25
  229. data/ext/debian/puppet-el.emacsen-remove +0 -11
  230. data/ext/debian/puppet-el.emacsen-startup +0 -9
  231. data/ext/debian/puppet-el.install +0 -1
  232. data/ext/debian/puppet-testsuite.install +0 -2
  233. data/ext/debian/puppet-testsuite.lintian-overrides +0 -4
  234. data/ext/debian/puppet.lintian-overrides +0 -3
  235. data/ext/debian/puppet.logrotate +0 -20
  236. data/ext/debian/puppet.postinst +0 -20
  237. data/ext/debian/puppet.postrm +0 -20
  238. data/ext/debian/puppet.preinst +0 -20
  239. data/ext/debian/puppetmaster-common.install +0 -2
  240. data/ext/debian/puppetmaster-common.manpages +0 -2
  241. data/ext/debian/puppetmaster-common.postinst +0 -6
  242. data/ext/debian/puppetmaster-passenger.dirs +0 -4
  243. data/ext/debian/puppetmaster-passenger.postinst +0 -162
  244. data/ext/debian/puppetmaster-passenger.postrm +0 -61
  245. data/ext/debian/puppetmaster.README.debian +0 -17
  246. data/ext/debian/puppetmaster.default +0 -14
  247. data/ext/debian/puppetmaster.init +0 -137
  248. data/ext/debian/puppetmaster.lintian-overrides +0 -3
  249. data/ext/debian/puppetmaster.postinst +0 -20
  250. data/ext/debian/puppetmaster.postrm +0 -5
  251. data/ext/debian/puppetmaster.preinst +0 -22
  252. data/ext/debian/rules +0 -132
  253. data/ext/debian/source/format +0 -1
  254. data/ext/debian/source/options +0 -1
  255. data/ext/debian/vim-puppet.README.Debian +0 -13
  256. data/ext/debian/vim-puppet.dirs +0 -5
  257. data/ext/debian/vim-puppet.yaml +0 -7
  258. data/ext/debian/watch +0 -2
  259. data/ext/freebsd/puppetd +0 -26
  260. data/ext/freebsd/puppetmasterd +0 -26
  261. data/ext/gentoo/conf.d/puppet +0 -5
  262. data/ext/gentoo/conf.d/puppetmaster +0 -12
  263. data/ext/gentoo/init.d/puppet +0 -38
  264. data/ext/gentoo/init.d/puppetmaster +0 -51
  265. data/ext/gentoo/puppet/fileserver.conf +0 -41
  266. data/ext/ips/puppet-agent +0 -44
  267. data/ext/ips/puppet-master +0 -44
  268. data/ext/ips/puppet.p5m.erb +0 -12
  269. data/ext/ips/puppetagent.xml +0 -42
  270. data/ext/ips/puppetmaster.xml +0 -42
  271. data/ext/ips/rules +0 -19
  272. data/ext/ips/transforms +0 -34
  273. data/ext/ldap/puppet.schema +0 -24
  274. data/ext/logcheck/puppet +0 -23
  275. data/ext/osx/file_mapping.yaml +0 -28
  276. data/ext/osx/postflight.erb +0 -109
  277. data/ext/osx/preflight.erb +0 -52
  278. data/ext/osx/prototype.plist.erb +0 -38
  279. data/ext/redhat/fileserver.conf +0 -41
  280. data/ext/redhat/logrotate +0 -21
  281. data/ext/redhat/puppet.spec.erb +0 -841
  282. data/ext/redhat/server.init +0 -128
  283. data/ext/redhat/server.sysconfig +0 -13
  284. data/ext/solaris/pkginfo +0 -6
  285. data/ext/solaris/smf/puppetd.xml +0 -77
  286. data/ext/solaris/smf/puppetmasterd.xml +0 -77
  287. data/ext/solaris/smf/svc-puppetd +0 -71
  288. data/ext/solaris/smf/svc-puppetmasterd +0 -67
  289. data/ext/suse/puppet.spec +0 -310
  290. data/ext/suse/server.init +0 -173
  291. data/ext/yaml_nodes.rb +0 -105
  292. data/spec/unit/indirector/store_configs_spec.rb +0 -7
data/ext/debian/rules DELETED
@@ -1,132 +0,0 @@
1
- #!/usr/bin/make -f
2
- # -*- makefile -*-
3
-
4
- # Uncomment this to turn on verbose mode.
5
- #export DH_VERBOSE=1
6
-
7
- INSTALL=install -Dp
8
-
9
- prefix := $(CURDIR)/debian/tmp
10
- bindir := $(prefix)/$(shell /usr/bin/ruby -rrbconfig -e 'puts RbConfig::CONFIG["bindir"]')
11
- libdir := $(prefix)/usr/lib
12
- localstatedir := $(prefix)/var
13
- rubylibdir := $(shell /usr/bin/ruby -rrbconfig -e 'puts RbConfig::CONFIG["vendordir"]')
14
- sysconfdir := $(prefix)/etc
15
- pkgconfdir := $(sysconfdir)/puppet
16
-
17
- ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
18
- CFLAGS += -O0
19
- else
20
- CFLAGS += -O2
21
- endif
22
-
23
- configure: configure-stamp
24
- configure-stamp:
25
- dh_testdir
26
- touch configure-stamp
27
-
28
-
29
- build-arch: build
30
- build-indep: build
31
-
32
- build: build-stamp
33
- build-stamp: configure-stamp
34
- dh_testdir
35
- touch build-stamp
36
-
37
- clean:
38
- dh_testdir
39
- dh_testroot
40
- rm -f build-stamp configure-stamp
41
- rm -f debian/puppet-common.logcheck.ignore.server
42
- dh_clean
43
-
44
- install: build
45
- dh_testdir
46
- dh_testroot
47
- dh_clean -k
48
- dh_installdirs
49
-
50
- $(CURDIR)/install.rb --destdir=debian/tmp --bindir=/usr/bin --sitelibdir=$(rubylibdir) --ruby=/usr/bin/ruby
51
-
52
- # strip executable bit from all the non-executable files.
53
- find $(prefix)/$(rubylibdir) -type f -perm /u+x,g+x,o+x -exec chmod a-x {} \;
54
- # fix the permissions on all of the directories
55
- find $(prefix)/$(rubylibdir) -type d -exec chmod 755 {} \;
56
-
57
- # Vim auto-syntax-highlighting stuff
58
- $(INSTALL) -m0644 ext/vim/syntax/puppet.vim \
59
- $(CURDIR)/debian/vim-puppet/usr/share/vim/addons/syntax/
60
- $(INSTALL) -m0644 ext/vim/ftdetect/puppet.vim \
61
- $(CURDIR)/debian/vim-puppet/usr/share/vim/addons/ftdetect/
62
- $(INSTALL) -m0644 ext/vim/indent/puppet.vim \
63
- $(CURDIR)/debian/vim-puppet/usr/share/vim/addons/indent/
64
- $(INSTALL) -m0644 ext/vim/ftplugin/puppet.vim \
65
- $(CURDIR)/debian/vim-puppet/usr/share/vim/addons/ftplugin/
66
- $(INSTALL) -m0644 debian/vim-puppet.yaml \
67
- $(CURDIR)/debian/vim-puppet/usr/share/vim/registry/
68
-
69
- # Emacs mode
70
- $(INSTALL) -m0644 ext/emacs/puppet-mode.el \
71
- $(CURDIR)/debian/puppet-el/usr/share/emacs/site-lisp/puppet-mode.el
72
-
73
- # Install the config.ru
74
- $(INSTALL) -m0644 ext/rack/config.ru \
75
- $(CURDIR)/debian/puppetmaster-passenger/usr/share/puppet/rack/puppetmasterd
76
- # Install apache2 site configuration template
77
- $(INSTALL) -m0644 ext/rack/example-passenger-vhost.conf \
78
- $(CURDIR)/debian/puppetmaster-passenger/usr/share/puppetmaster-passenger/apache2.site.conf.tmpl
79
-
80
- # Install example environment README
81
- $(INSTALL) -m0644 ext/README.environment \
82
- $(CURDIR)/debian/puppet-common/etc/puppet/environments/example_env/README.environment
83
-
84
- # Add ext directory
85
- cp -pr ext $(CURDIR)/debian/puppet-common/usr/share/puppet
86
- # Remove misc packaging artifacts not applicable to debian
87
- rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/gentoo
88
- rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/freebsd
89
- rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/solaris
90
- rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/suse
91
- rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/windows
92
- rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/redhat
93
- rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/ips
94
- rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/osx
95
- rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/build_defaults.yaml
96
- rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/project_data.yaml
97
-
98
- dh_installexamples -p puppet-common examples/*
99
-
100
- $(INSTALL) -d -m0775 $(pkgconfdir)/templates
101
- $(INSTALL) -d -m0775 $(pkgconfdir)/modules
102
-
103
- # Logcheck rules. Gee I wish you could specify a file to source
104
- # in dh_installlogcheck.
105
- ln ext/logcheck/puppet debian/puppet-common.logcheck.ignore.server
106
-
107
- # Build architecture-dependent files here.
108
- binary-arch: build install
109
-
110
- # Build architecture-independent files here.
111
- binary-indep: build install
112
- dh_testdir
113
- dh_testroot
114
- dh_install -i
115
- dh_installdocs -i
116
- dh_installemacsen
117
- dh_installlogcheck
118
- dh_installman
119
- dh_installinit -ppuppetmaster
120
- dh_installinit -ppuppet --error-handler=true -- defaults 21
121
- dh_installlogrotate -i
122
- dh_lintian -i
123
- dh_compress -i
124
- dh_fixperms -i
125
- dh_installdeb -i
126
- dh_shlibdeps -i
127
- dh_gencontrol -i
128
- dh_md5sums -i
129
- dh_builddeb -i
130
-
131
- binary: binary-indep binary-arch
132
- .PHONY: build clean binary-indep binary-arch binary install configure
@@ -1 +0,0 @@
1
- 3.0 (quilt)
@@ -1 +0,0 @@
1
- single-debian-patch
@@ -1,13 +0,0 @@
1
- Dear user, this package provides the vim addon puppet, but it is not enabled
2
- per default.
3
-
4
- If you want to enable it for your user account just execute
5
-
6
- vim-addons install puppet
7
-
8
- Similarly, to enable it for all users of this system just execute (as root):
9
-
10
- vim-addons -w install puppet
11
-
12
- vim-addons is provided by the vim-addon-manager package, have a look at its
13
- manpage for more information.
@@ -1,5 +0,0 @@
1
- usr/share/vim/registry
2
- usr/share/vim/addons/syntax
3
- usr/share/vim/addons/ftdetect
4
- usr/share/vim/addons/indent
5
- usr/share/vim/addons/ftplugin
@@ -1,7 +0,0 @@
1
- addon: puppet
2
- description: "Syntax highlighting for puppet"
3
- files:
4
- - ftdetect/puppet.vim
5
- - syntax/puppet.vim
6
- - indent/puppet.vim
7
- - ftplugin/puppet.vim
data/ext/debian/watch DELETED
@@ -1,2 +0,0 @@
1
- version=3
2
- http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/puppet .*/puppet-(.*).tar.gz
data/ext/freebsd/puppetd DELETED
@@ -1,26 +0,0 @@
1
- #!/bin/sh
2
- #
3
-
4
- # PROVIDE: puppetd
5
- # REQUIRE: NETWORK
6
- # KEYWORD: FreeBSD shutdown
7
-
8
- . /etc/rc.subr
9
-
10
- name=puppetd
11
- rcvar=`set_rcvar`
12
-
13
- # set defaults
14
- command=/usr/local/bin/puppetd
15
- pidfile="/var/run/$name.pid"
16
- #required_files="/usr/local/etc/$name.conf"
17
-
18
- # read configuration and set defaults
19
- load_rc_config "$name"
20
- : ${puppetd_enable="NO"}
21
- : ${puppetd_config="/usr/local/etc/puppet.conf"}
22
- : ${puppetd_flags=""}
23
-
24
- command_args="--config $puppetd_config $puppetd_flags"
25
-
26
- run_rc_command "$1"
@@ -1,26 +0,0 @@
1
- #!/bin/sh
2
- #
3
-
4
- # PROVIDE: puppetmasterd
5
- # REQUIRE: NETWORK
6
- # KEYWORD: FreeBSD shutdown
7
-
8
- . /etc/rc.subr
9
-
10
- name=puppetmasterd
11
- rcvar=`set_rcvar`
12
-
13
- # set defaults
14
- command=/usr/local/bin/puppetmasterd
15
- pidfile="/var/run/$name.pid"
16
- #required_files="/usr/local/etc/$name.conf"
17
-
18
- # read configuration and set defaults
19
- load_rc_config "$name"
20
- : ${puppetmasterd_enable="NO"}
21
- : ${puppetmasterd_config="/usr/local/etc/puppet.conf"}
22
- : ${puppetmasterd_flags=""}
23
-
24
- command_args="--config $puppetmasterd_config $puppetmasterd_flags"
25
-
26
- run_rc_command "$1"
@@ -1,5 +0,0 @@
1
- # Location of PID files
2
- PUPPET_PID_DIR="/var/run/puppetlabs"
3
-
4
- # You may specify other parameters to the puppet client here
5
- #PUPPET_EXTRA_OPTS=""
@@ -1,12 +0,0 @@
1
- # Location of PID files
2
- PUPPETMASTER_PID_DIR="/var/run/puppetlabs"
3
-
4
- # Location of the main manifest
5
- #PUPPETMASTER_MANIFEST="/etc/puppet/manifests/site.pp"
6
-
7
- # Where to log general messages to.
8
- # Specify syslog to send log messages to the system log.
9
- #PUPPETMASTER_LOG="syslog"
10
-
11
- # You may specify other parameters to the puppetmaster here
12
- #PUPPETMASTER_EXTRA_OPTS="--no-ca"
@@ -1,38 +0,0 @@
1
- #!/sbin/runscript
2
- # Copyright 1999-2004 Gentoo Foundation
3
- # Distributed under the terms of the GNU General Public License v2
4
- # $Header$
5
-
6
- depend() {
7
- need net
8
- use dns logger
9
- }
10
-
11
- checkconfig() {
12
- if [[ ! -d "${PUPPET_PID_DIR}" ]] ; then
13
- eerror "Please make sure PUPPET_PID_DIR is defined and points to an existing directory"
14
- return 1
15
- fi
16
-
17
- return 0
18
- }
19
-
20
- start() {
21
- checkconfig || return $?
22
-
23
- local options=""
24
- [[ -n "${PUPPET_EXTRA_OPTS}" ]] && options="${options} ${PUPPET_EXTRA_OPTS}"
25
-
26
- ebegin "Starting puppet"
27
- start-stop-daemon --start --quiet --exec /usr/bin/ruby /usr/bin/puppetd -- ${options}
28
- eend $? "Failed to start puppet"
29
- }
30
-
31
- stop() {
32
- ebegin "Stopping puppet"
33
- start-stop-daemon --stop --quiet --pidfile ${PUPPET_PID_DIR}/puppetd.pid
34
- local ret=$?
35
- eend ${ret} "Failed to stop puppet"
36
- rm -f ${PUPPET_PID_DIR}/puppetd.pid
37
- return ${ret}
38
- }
@@ -1,51 +0,0 @@
1
- #!/sbin/runscript
2
- # Copyright 1999-2008 Gentoo Foundation
3
- # Distributed under the terms of the GNU General Public License v2
4
-
5
- depend() {
6
- need net
7
- before puppet
8
- use dns logger
9
- }
10
-
11
- checkconfig() {
12
- if [[ ! -d "${PUPPETMASTER_PID_DIR}" ]] ; then
13
- eerror "Please make sure PUPPETMASTER_PID_DIR is defined and points to an existing directory"
14
- return 1
15
- fi
16
-
17
- local site_manifest="/etc/puppet/manifests/site.pp"
18
- [[ -n "${PUPPETMASTER_MANIFEST}" ]] && site_manifest="${PUPPETMASTER_MANIFEST}"
19
-
20
- if [ ! -f "${site_manifest}" ] ; then
21
- eerror "Please create ${site_manifest} before running puppet"
22
- return 1
23
- fi
24
-
25
- return 0
26
- }
27
-
28
- start() {
29
- checkconfig || return $?
30
-
31
- local options=""
32
- [[ -n "${PUPPETMASTER_MANIFEST}" ]] && options="${options} --manifest=${PUPPETMASTER_MANIFEST}"
33
- [[ -n "${PUPPETMASTER_LOG}" ]] && options="${options} --logdest=${PUPPETMASTER_LOG}"
34
- [[ -n "${PUPPETMASTER_EXTRA_OPTS}" ]] && options="${options} ${PUPPETMASTER_EXTRA_OPTS}"
35
-
36
- ebegin "Starting puppetmaster"
37
- start-stop-daemon --start --quiet --exec /usr/bin/ruby /usr/bin/puppetmasterd \
38
- -- ${options}
39
- eend "$?" "Failed to start puppetmaster"
40
- }
41
-
42
- stop() {
43
- ebegin "Stopping puppetmaster"
44
- start-stop-daemon --stop --quiet \
45
- --pidfile ${PUPPETMASTER_PID_DIR}/puppetmasterd.pid
46
- local ret=$?
47
- eend "${ret}" "Failed to stop puppetmaster"
48
- rm -f "${PUPPETMASTER_PID_DIR}/puppetmasterd.pid"
49
- return "${ret}"
50
- }
51
-
@@ -1,41 +0,0 @@
1
- # fileserver.conf
2
-
3
- # Puppet automatically serves PLUGINS and FILES FROM MODULES: anything in
4
- # <module name>/files/<file name> is available to authenticated nodes at
5
- # puppet:///modules/<module name>/<file name>. You do not need to edit this
6
- # file to enable this.
7
-
8
- # MOUNT POINTS
9
-
10
- # If you need to serve files from a directory that is NOT in a module,
11
- # you must create a static mount point in this file:
12
- #
13
- # [extra_files]
14
- # path /etc/puppet/files
15
- # allow *
16
- #
17
- # In the example above, anything in /etc/puppet/files/<file name> would be
18
- # available to authenticated nodes at puppet:///extra_files/<file name>.
19
- #
20
- # Mount points may also use three placeholders as part of their path:
21
- #
22
- # %H - The node's certname.
23
- # %h - The portion of the node's certname before the first dot. (Usually the
24
- # node's short hostname.)
25
- # %d - The portion of the node's certname after the first dot. (Usually the
26
- # node's domain name.)
27
-
28
- # PERMISSIONS
29
-
30
- # Every static mount point should have an `allow *` line; setting more
31
- # granular permissions in this file is deprecated. Instead, you can
32
- # control file access in auth.conf by controlling the
33
- # /file_metadata/<mount point> and /file_content/<mount point> paths:
34
- #
35
- # path ~ ^/file_(metadata|content)/extra_files/
36
- # auth yes
37
- # allow /^(.+)\.example\.com$/
38
- # allow_ip 192.168.100.0/24
39
- #
40
- # If added to auth.conf BEFORE the "path /file" rule, the rule above
41
- # will add stricter restrictions to the extra_files mount point.
data/ext/ips/puppet-agent DELETED
@@ -1,44 +0,0 @@
1
- #!/sbin/sh
2
-
3
- . /lib/svc/share/smf_include.sh
4
-
5
- [[ -z "${SMF_FMRI}" ]] && exit "$SMF_EXIT_ERR"
6
-
7
- typeset -r CONF_FILE=/etc/puppet/puppet.conf
8
- [[ ! -f "${CONF_FILE}" ]] && exit "$SMF_EXIT_ERR_CONFIG"
9
-
10
- typeset -r PUPPET=/usr/bin/puppet
11
-
12
- case "$1" in
13
- start)
14
- exec "$PUPPET" agent
15
- ;;
16
-
17
- stop)
18
- # stop sends sigterm first followed by sigkill
19
- # smf_kill_contract <CTID> TERM 1 30
20
- # sends sigterm to all process in ctid and will continue
21
- # to do so for 30 seconds with interval of 5 seconds
22
- # smf_kill_contract <CTID> KILL 1
23
- # continues until all processes are killed.
24
- # svcs -p <fmri> lists all processes in the contract.
25
- # http://bnsmb.de/solaris/My_Little_SMF_FAQ.html
26
- ctid=`svcprop -p restarter/contract "$SMF_FMRI"`
27
- if [ -n "$ctid" ]; then
28
- smf_kill_contract "$ctid" TERM 1 5
29
- ret=$?
30
- [ "$ret" -eq 1 ] && exit "$SMF_EXIT_ERR_FATAL"
31
-
32
- if [ "$ret" -eq 2 ] ; then
33
- smf_kill_contract "$ctid" KILL 1
34
- [ $? -ne 0 ] && exit "$SMF_EXIT_ERR_FATAL"
35
- fi
36
- fi
37
- ;;
38
- *)
39
- echo "Usage: $0 {start|stop}";
40
- exit "$SMF_EXIT_ERR_FATAL"
41
- ;;
42
- esac
43
- exit "$SMF_EXIT_OK"
44
-
@@ -1,44 +0,0 @@
1
- #!/sbin/sh
2
-
3
- . /lib/svc/share/smf_include.sh
4
-
5
- [[ -z "${SMF_FMRI}" ]] && exit "$SMF_EXIT_ERR"
6
-
7
- typeset -r CONF_FILE=/etc/puppet/puppet.conf
8
- [[ ! -f "${CONF_FILE}" ]] && exit "$SMF_EXIT_ERR_CONFIG"
9
- typeset -r PUPPET=/usr/bin/puppet
10
-
11
- case "$1" in
12
- start)
13
- exec "$PUPPET" master --daemonize
14
- ;;
15
-
16
- stop)
17
- # stop sends sigterm first followed by sigkill
18
- # smf_kill_contract <CTID> TERM 1 30
19
- # sends sigterm to all process in ctid and will continue
20
- # to do so for 30 seconds with interval of 5 seconds
21
- # smf_kill_contract <CTID> KILL 1
22
- # continues until all processes are killed.
23
- # svcs -p <fmri> lists all processes in the contract.
24
- # http://bnsmb.de/solaris/My_Little_SMF_FAQ.html
25
-
26
- ctid=`svcprop -p restarter/contract "$SMF_FMRI"`
27
- if [ -n "$ctid" ]; then
28
- smf_kill_contract "$ctid" TERM 1 5
29
- ret=$?
30
- [ "$ret" -eq 1 ] && exit "$SMF_EXIT_ERR_FATAL"
31
-
32
- if [ "$ret" -eq 2 ] ; then
33
- smf_kill_contract "$ctid" KILL 1
34
- [ $? -ne 0 ] && exit "$SMF_EXIT_ERR_FATAL"
35
- fi
36
- fi
37
- ;;
38
- *)
39
- echo "Usage: $0 {start|stop}";
40
- exit "$SMF_EXIT_ERR_FATAL"
41
- ;;
42
- esac
43
- exit "$SMF_EXIT_OK"
44
-
@@ -1,12 +0,0 @@
1
- set name=pkg.fmri value=pkg://puppetlabs.com/system/management/<%=@name%>@<%=@ipsversion%>
2
- set name=pkg.summary value="<%=@summary%>"
3
- set name=pkg.human-version value="<%=@version%>"
4
- set name=pkg.description value="<%=@description%>"
5
- set name=info.classification value="org.opensolaris.category.2008:System/Administration and Configuration"
6
- set name=org.opensolaris.consolidation value="puppet"
7
- set name=description value="<%=@description%>"
8
- set name=variant.opensolaris.zone value=global value=nonglobal
9
- set name=variant.arch value=sparc value=i386
10
- license puppet.license license="Apache v2.0"
11
- group groupname=puppet
12
- user username=puppet password='*NP*' group=puppet
@@ -1,42 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
3
- <service_bundle type="manifest" name="puppet:agent">
4
-
5
- <service name="network/puppet/agent" type="service" version="1">
6
- <create_default_instance enabled="false"/>
7
- <single_instance/>
8
-
9
- <dependency name="config-file" grouping="require_all" restart_on="none" type="path">
10
- <service_fmri value="file:///etc/puppet/puppet.conf"/>
11
- </dependency>
12
-
13
- <dependency name='filesystem-local' grouping='require_all' restart_on='none' type='service'>
14
- <service_fmri value='svc:/system/filesystem/local:default'/>
15
- </dependency>
16
-
17
- <dependency name='network' grouping='require_all' restart_on='error' type='service'>
18
- <service_fmri value='svc:/milestone/network:default'/>
19
- </dependency>
20
-
21
- <dependency name="fs-local" grouping="require_all" restart_on="none" type="service">
22
- <service_fmri value="svc:/system/filesystem/local"/>
23
- </dependency>
24
-
25
- <exec_method type="method" name="start" exec="/lib/svc/method/puppet-agent start" timeout_seconds="60"/>
26
-
27
- <exec_method type="method" name="stop" exec="/lib/svc/method/puppet-agent stop" timeout_seconds="60"/>
28
-
29
- <stability value="Evolving"/>
30
-
31
- <template>
32
- <common_name>
33
- <loctext xml:lang="C">Puppet Agent Daemon</loctext>
34
- </common_name>
35
- <documentation>
36
- <manpage title="puppet" section="1"/>
37
- <doc_link name="puppetlabs.com" uri="https://puppetlabs.com/puppet/introduction"/>
38
- </documentation>
39
- </template>
40
- </service>
41
-
42
- </service_bundle>
@@ -1,42 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
3
- <service_bundle type="manifest" name="puppet:master">
4
-
5
- <service name="network/puppet/master" type="service" version="1">
6
- <create_default_instance enabled="false"/>
7
- <single_instance/>
8
-
9
- <dependency name="config-file" grouping="require_all" restart_on="none" type="path">
10
- <service_fmri value="file:///etc/puppet/puppet.conf"/>
11
- </dependency>
12
-
13
- <dependency name='filesystem-local' grouping='require_all' restart_on='none' type='service'>
14
- <service_fmri value='svc:/system/filesystem/local:default'/>
15
- </dependency>
16
-
17
- <dependency name='network' grouping='require_all' restart_on='error' type='service'>
18
- <service_fmri value='svc:/milestone/network:default'/>
19
- </dependency>
20
-
21
- <dependency name="fs-local" grouping="require_all" restart_on="none" type="service">
22
- <service_fmri value="svc:/system/filesystem/local"/>
23
- </dependency>
24
-
25
- <exec_method type="method" name="start" exec="/lib/svc/method/puppet-master start" timeout_seconds="60"/>
26
-
27
- <exec_method type="method" name="stop" exec="/lib/svc/method/puppet-master stop" timeout_seconds="60"/>
28
-
29
- <stability value="Evolving"/>
30
-
31
- <template>
32
- <common_name>
33
- <loctext xml:lang="C">Puppet Master Daemon</loctext>
34
- </common_name>
35
- <documentation>
36
- <manpage title="puppet" section="1"/>
37
- <doc_link name="puppetlabs.com" uri="https://puppetlabs.com/puppet/introduction"/>
38
- </documentation>
39
- </template>
40
- </service>
41
-
42
- </service_bundle>
data/ext/ips/rules DELETED
@@ -1,19 +0,0 @@
1
- #!/usr/bin/make -f
2
-
3
- LIBDIR=$(shell /usr/bin/ruby18 -rrbconfig -e 'puts Config::CONFIG["rubylibdir"]')
4
- DESTDIR=$(CURDIR)/pkg/ips/proto
5
-
6
- binary-install/puppet::
7
- /usr/bin/ruby18 install.rb --destdir=$(DESTDIR) --bindir=/usr/bin --sbindir=/usr/sbin --sitelibdir=$(LIBDIR) --mandir=/usr/share/man
8
- mkdir -p $(DESTDIR)/var/{lib,log}/puppet/
9
- mkdir -p $(DESTDIR)/var/svc/manifest/network/puppet/
10
- mkdir -p $(DESTDIR)/lib/svc/method/
11
- mkdir -p $(DESTDIR)/etc/puppet/
12
- svccfg validate ext/ips/puppetagent.xml
13
- svccfg validate ext/ips/puppetmaster.xml
14
- cp ext/ips/puppetagent.xml $(DESTDIR)/var/svc/manifest/network/puppet/
15
- cp ext/ips/puppetmaster.xml $(DESTDIR)/var/svc/manifest/network/puppet/
16
- cp ext/ips/puppet-agent $(DESTDIR)/lib/svc/method/
17
- cp ext/ips/puppet-master $(DESTDIR)/lib/svc/method/
18
- cp ext/ips/puppet.conf $(DESTDIR)/etc/puppet/puppet.conf
19
- chmod 700 $(DESTDIR)/lib/svc/method/puppet-{agent,master}
data/ext/ips/transforms DELETED
@@ -1,34 +0,0 @@
1
- <transform file dir link hardlink path=usr/share/man/.+(/.+)? -> default facet.doc.man true>
2
- <transform file path=usr/share/man/.+(/.+)? -> add restart_fmri svc:/application/man-index:default>
3
-
4
- # drop opt and user
5
- <transform dir path=(lib|etc|usr|var)$->drop>
6
- <transform dir path=usr/(share|ruby)$->drop>
7
- <transform dir path=usr/share/man$->drop>
8
- <transform dir path=usr/ruby/1.8$->drop>
9
- <transform dir path=usr/ruby/1.8/lib$->drop>
10
- <transform dir path=usr/ruby/1.8/ruby$->drop>
11
- <transform dir path=usr/ruby/1.8/ruby/1.8$->drop>
12
- <transform dir path=(var|lib)/svc$->drop>
13
- <transform dir path=lib/svc/method$->drop>
14
- <transform dir path=var/svc/manifest$->drop>
15
- <transform dir path=var/svc/manifest/network$->drop>
16
-
17
- # drop var/lib var/log
18
- <transform dir path=var/(lib|log)$->drop>
19
-
20
- # saner dependencies
21
- <transform depend -> edit fmri "@[^ \t\n\r\f\v]*" "">
22
-
23
- # make sure /var/log/puppet and /var/lib/puppet are owned by puppet
24
- <transform dir path=var/(log|lib)/puppet$ -> edit group bin puppet>
25
- <transform dir path=var/(log|lib)/puppet$ -> edit owner root puppet>
26
-
27
- <transform file path=var/svc/manifest/.*\.xml -> add restart_fmri svc:/system/manifest-import:default>
28
-
29
- # we depend on facter
30
- <transform pkg -> emit depend type=require fmri=application/facter@1.7.0>
31
-
32
- # preserve the old conf file on upgrade.
33
- <transform file path=etc/puppet/(puppet|auth).conf -> add overlay true>
34
- <transform file path=etc/puppet/(puppet|auth).conf -> add preserve renamenew>
@@ -1,24 +0,0 @@
1
- attributetype ( 1.3.6.1.4.1.34380.1.1.3.10 NAME 'puppetClass'
2
- DESC 'Puppet Node Class'
3
- EQUALITY caseIgnoreIA5Match
4
- SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
5
-
6
- attributetype ( 1.3.6.1.4.1.34380.1.1.3.9 NAME 'parentNode'
7
- DESC 'Puppet Parent Node'
8
- EQUALITY caseIgnoreIA5Match
9
- SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
10
- SINGLE-VALUE )
11
-
12
- attributetype ( 1.3.6.1.4.1.34380.1.1.3.11 NAME 'environment'
13
- DESC 'Puppet Node Environment'
14
- EQUALITY caseIgnoreIA5Match
15
- SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
16
-
17
- attributetype ( 1.3.6.1.4.1.34380.1.1.3.12 NAME 'puppetVar'
18
- DESC 'A variable setting for puppet'
19
- EQUALITY caseIgnoreIA5Match
20
- SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
21
-
22
- objectclass ( 1.3.6.1.4.1.34380.1.1.1.2 NAME 'puppetClient' SUP top AUXILIARY
23
- DESC 'Puppet Client objectclass'
24
- MAY ( puppetclass $ parentnode $ environment $ puppetvar ))