puppet 7.9.0 → 7.10.0

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 (182) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +6 -6
  3. data/{ext → examples/enc}/regexp_nodes/classes/databases +0 -0
  4. data/{ext → examples/enc}/regexp_nodes/classes/webservers +0 -0
  5. data/{ext → examples/enc}/regexp_nodes/environment/development +0 -0
  6. data/{ext → examples/enc}/regexp_nodes/parameters/service/prod +0 -0
  7. data/{ext → examples/enc}/regexp_nodes/parameters/service/qa +0 -0
  8. data/{ext → examples/enc}/regexp_nodes/parameters/service/sandbox +0 -0
  9. data/{ext → examples/enc}/regexp_nodes/regexp_nodes.rb +0 -0
  10. data/{ext → examples}/nagios/check_puppet.rb +2 -2
  11. data/ext/README.md +13 -0
  12. data/lib/puppet/configurer.rb +155 -46
  13. data/lib/puppet/defaults.rb +51 -26
  14. data/lib/puppet/environments.rb +66 -26
  15. data/lib/puppet/file_serving/configuration.rb +2 -0
  16. data/lib/puppet/file_serving/configuration/parser.rb +2 -0
  17. data/lib/puppet/file_serving/mount/scripts.rb +24 -0
  18. data/lib/puppet/functions/find_template.rb +2 -2
  19. data/lib/puppet/http/service/compiler.rb +6 -1
  20. data/lib/puppet/indirector/catalog/compiler.rb +21 -3
  21. data/lib/puppet/indirector/catalog/rest.rb +1 -0
  22. data/lib/puppet/indirector/terminus.rb +4 -0
  23. data/lib/puppet/module/plan.rb +0 -1
  24. data/lib/puppet/module/task.rb +1 -1
  25. data/lib/puppet/module_tool/applications/installer.rb +8 -4
  26. data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
  27. data/lib/puppet/node/environment.rb +10 -11
  28. data/lib/puppet/pops/serialization/to_data_converter.rb +18 -6
  29. data/lib/puppet/provider/package/pkg.rb +8 -1
  30. data/lib/puppet/provider/service/launchd.rb +1 -1
  31. data/lib/puppet/provider/service/systemd.rb +1 -1
  32. data/lib/puppet/provider/user/useradd.rb +42 -9
  33. data/lib/puppet/transaction/persistence.rb +11 -1
  34. data/lib/puppet/transaction/report.rb +15 -1
  35. data/lib/puppet/type.rb +1 -1
  36. data/lib/puppet/type/exec.rb +10 -1
  37. data/lib/puppet/type/file.rb +6 -6
  38. data/lib/puppet/type/filebucket.rb +2 -2
  39. data/lib/puppet/version.rb +1 -1
  40. data/locales/puppet.pot +134 -94
  41. data/man/man5/puppet.conf.5 +65 -25
  42. data/man/man8/puppet-agent.8 +1 -1
  43. data/man/man8/puppet-apply.8 +1 -1
  44. data/man/man8/puppet-catalog.8 +1 -1
  45. data/man/man8/puppet-config.8 +1 -1
  46. data/man/man8/puppet-describe.8 +1 -1
  47. data/man/man8/puppet-device.8 +1 -1
  48. data/man/man8/puppet-doc.8 +1 -1
  49. data/man/man8/puppet-epp.8 +1 -1
  50. data/man/man8/puppet-facts.8 +1 -1
  51. data/man/man8/puppet-filebucket.8 +1 -1
  52. data/man/man8/puppet-generate.8 +1 -1
  53. data/man/man8/puppet-help.8 +1 -1
  54. data/man/man8/puppet-lookup.8 +1 -1
  55. data/man/man8/puppet-module.8 +3 -3
  56. data/man/man8/puppet-node.8 +1 -1
  57. data/man/man8/puppet-parser.8 +1 -1
  58. data/man/man8/puppet-plugin.8 +1 -1
  59. data/man/man8/puppet-report.8 +1 -1
  60. data/man/man8/puppet-resource.8 +1 -1
  61. data/man/man8/puppet-script.8 +1 -1
  62. data/man/man8/puppet-ssl.8 +1 -1
  63. data/man/man8/puppet.8 +2 -2
  64. data/spec/fixtures/integration/application/agent/lib/facter/agent_spec_role.rb +3 -0
  65. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Gemfile +4 -0
  66. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Rakefile +3 -0
  67. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/lib/puppet/functions/l10n.rb +8 -0
  68. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/config.yaml +25 -0
  69. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/ja/puppet-l10n.po +19 -0
  70. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/puppet-l10n.pot +20 -0
  71. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/metadata.json +8 -0
  72. data/spec/integration/application/agent_spec.rb +102 -52
  73. data/spec/integration/application/filebucket_spec.rb +5 -0
  74. data/spec/integration/configurer_spec.rb +17 -1
  75. data/spec/integration/l10n/compiler_spec.rb +37 -0
  76. data/spec/lib/puppet_spec/modules.rb +13 -2
  77. data/spec/lib/puppet_spec/puppetserver.rb +15 -0
  78. data/spec/shared_behaviours/documentation_on_faces.rb +0 -2
  79. data/spec/shared_contexts/l10n.rb +27 -0
  80. data/spec/spec_helper.rb +1 -10
  81. data/spec/unit/configurer_spec.rb +265 -54
  82. data/spec/unit/environments_spec.rb +150 -1
  83. data/spec/unit/file_serving/configuration/parser_spec.rb +23 -0
  84. data/spec/unit/file_serving/configuration_spec.rb +12 -4
  85. data/spec/unit/file_serving/mount/scripts_spec.rb +69 -0
  86. data/spec/unit/functions/logging_spec.rb +1 -0
  87. data/spec/unit/http/service/compiler_spec.rb +8 -0
  88. data/spec/unit/indirector/catalog/compiler_spec.rb +87 -0
  89. data/spec/unit/indirector/catalog/rest_spec.rb +8 -0
  90. data/spec/unit/interface/action_spec.rb +0 -9
  91. data/spec/unit/module_spec.rb +14 -0
  92. data/spec/unit/module_tool/applications/installer_spec.rb +39 -12
  93. data/spec/unit/pops/parser/parse_containers_spec.rb +0 -11
  94. data/spec/unit/pops/serialization/to_from_hr_spec.rb +58 -0
  95. data/spec/unit/provider/package/pkg_spec.rb +19 -5
  96. data/spec/unit/provider/service/launchd_spec.rb +11 -0
  97. data/spec/unit/provider/service/systemd_spec.rb +1 -1
  98. data/spec/unit/provider/user/useradd_spec.rb +3 -2
  99. metadata +34 -94
  100. data/ext/README.environment +0 -8
  101. data/ext/dbfix.sql +0 -132
  102. data/ext/debian/README.Debian +0 -8
  103. data/ext/debian/README.source +0 -2
  104. data/ext/debian/TODO.Debian +0 -1
  105. data/ext/debian/changelog.erb +0 -1122
  106. data/ext/debian/compat +0 -1
  107. data/ext/debian/control +0 -144
  108. data/ext/debian/copyright +0 -339
  109. data/ext/debian/docs +0 -1
  110. data/ext/debian/fileserver.conf +0 -41
  111. data/ext/debian/puppet-common.dirs +0 -13
  112. data/ext/debian/puppet-common.install +0 -3
  113. data/ext/debian/puppet-common.lintian-overrides +0 -5
  114. data/ext/debian/puppet-common.manpages +0 -28
  115. data/ext/debian/puppet-common.postinst +0 -35
  116. data/ext/debian/puppet-common.postrm +0 -33
  117. data/ext/debian/puppet-el.dirs +0 -1
  118. data/ext/debian/puppet-el.emacsen-install +0 -25
  119. data/ext/debian/puppet-el.emacsen-remove +0 -11
  120. data/ext/debian/puppet-el.emacsen-startup +0 -9
  121. data/ext/debian/puppet-el.install +0 -1
  122. data/ext/debian/puppet-testsuite.install +0 -2
  123. data/ext/debian/puppet-testsuite.lintian-overrides +0 -4
  124. data/ext/debian/puppet.lintian-overrides +0 -3
  125. data/ext/debian/puppet.logrotate +0 -20
  126. data/ext/debian/puppet.postinst +0 -20
  127. data/ext/debian/puppet.postrm +0 -20
  128. data/ext/debian/puppet.preinst +0 -20
  129. data/ext/debian/puppetmaster-common.install +0 -2
  130. data/ext/debian/puppetmaster-common.manpages +0 -2
  131. data/ext/debian/puppetmaster-common.postinst +0 -6
  132. data/ext/debian/puppetmaster-passenger.dirs +0 -4
  133. data/ext/debian/puppetmaster-passenger.postinst +0 -162
  134. data/ext/debian/puppetmaster-passenger.postrm +0 -61
  135. data/ext/debian/puppetmaster.README.debian +0 -17
  136. data/ext/debian/puppetmaster.default +0 -14
  137. data/ext/debian/puppetmaster.init +0 -137
  138. data/ext/debian/puppetmaster.lintian-overrides +0 -3
  139. data/ext/debian/puppetmaster.postinst +0 -20
  140. data/ext/debian/puppetmaster.postrm +0 -5
  141. data/ext/debian/puppetmaster.preinst +0 -22
  142. data/ext/debian/rules +0 -132
  143. data/ext/debian/source/format +0 -1
  144. data/ext/debian/source/options +0 -1
  145. data/ext/debian/vim-puppet.README.Debian +0 -13
  146. data/ext/debian/vim-puppet.dirs +0 -5
  147. data/ext/debian/vim-puppet.yaml +0 -7
  148. data/ext/debian/watch +0 -2
  149. data/ext/freebsd/puppetd +0 -26
  150. data/ext/freebsd/puppetmasterd +0 -26
  151. data/ext/gentoo/conf.d/puppet +0 -5
  152. data/ext/gentoo/conf.d/puppetmaster +0 -12
  153. data/ext/gentoo/init.d/puppet +0 -38
  154. data/ext/gentoo/init.d/puppetmaster +0 -51
  155. data/ext/gentoo/puppet/fileserver.conf +0 -41
  156. data/ext/ips/puppet-agent +0 -44
  157. data/ext/ips/puppet-master +0 -44
  158. data/ext/ips/puppet.p5m.erb +0 -12
  159. data/ext/ips/puppetagent.xml +0 -42
  160. data/ext/ips/puppetmaster.xml +0 -42
  161. data/ext/ips/rules +0 -19
  162. data/ext/ips/transforms +0 -34
  163. data/ext/ldap/puppet.schema +0 -24
  164. data/ext/logcheck/puppet +0 -23
  165. data/ext/osx/file_mapping.yaml +0 -28
  166. data/ext/osx/postflight.erb +0 -109
  167. data/ext/osx/preflight.erb +0 -52
  168. data/ext/osx/prototype.plist.erb +0 -38
  169. data/ext/redhat/fileserver.conf +0 -41
  170. data/ext/redhat/logrotate +0 -21
  171. data/ext/redhat/puppet.spec.erb +0 -841
  172. data/ext/redhat/server.init +0 -128
  173. data/ext/redhat/server.sysconfig +0 -13
  174. data/ext/solaris/pkginfo +0 -6
  175. data/ext/solaris/smf/puppetd.xml +0 -77
  176. data/ext/solaris/smf/puppetmasterd.xml +0 -77
  177. data/ext/solaris/smf/svc-puppetd +0 -71
  178. data/ext/solaris/smf/svc-puppetmasterd +0 -67
  179. data/ext/suse/puppet.spec +0 -310
  180. data/ext/suse/server.init +0 -173
  181. data/ext/yaml_nodes.rb +0 -105
  182. data/spec/unit/indirector/store_configs_spec.rb +0 -7
@@ -1,61 +0,0 @@
1
- #!/bin/sh
2
-
3
- set -e
4
-
5
- sitename="puppetmaster"
6
-
7
- # The debian provided a2* utils in Apache 2.4 uses "site name" as
8
- # argument, while the version in Apache 2.2 uses "file name".
9
- #
10
- # For added fun, the Apache 2.4 version requires files to have a
11
- # ".conf" suffix, but this must be stripped when using it as argument
12
- # for the a2* utilities.
13
- #
14
- # This will end in tears…
15
- # Can be removed when we only support apache >= 2.4
16
- apache2_puppetmaster_sitename() {
17
- apache2_version="$(dpkg-query --showformat='${Version}\n' --show apache2)"
18
- if dpkg --compare-versions "$apache2_version" gt "2.4~"; then
19
- echo "${sitename}.conf"
20
- else
21
- echo "${sitename}"
22
- fi
23
- }
24
-
25
- # Can be removed when we only support apache >= 2.4
26
- restart_apache2() {
27
- if [ -x "/etc/init.d/apache2" ]; then
28
- # Seems that a restart is needed. reload breaks ssl apparently.
29
- if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
30
- invoke-rc.d apache2 restart || exit $?
31
- else
32
- /etc/init.d/apache2 restart || exit $?
33
- fi
34
- fi
35
- }
36
-
37
- case "$1" in
38
- purge)
39
- if dpkg-statoverride --list /usr/share/puppet/rack/puppetmasterd/config.ru >/dev/null 2>&1
40
- then
41
- dpkg-statoverride --remove /usr/share/puppet/rack/puppetmasterd/config.ru
42
- fi
43
- # Remove the puppetmaster site configuration on purge
44
- rm -f /etc/apache2/sites-available/$(apache2_puppetmaster_sitename)
45
- ;;
46
- remove)
47
- # Disable the puppetmaster apache2 site configuration on package removal
48
- a2dissite ${sitename}
49
- restart_apache2
50
- ;;
51
- upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
52
- ;;
53
- *)
54
- echo "postrm called with unknown argument \`$1'" >&2
55
- exit 1
56
-
57
- esac
58
-
59
- #DEBHELPER#
60
-
61
- exit 0
@@ -1,17 +0,0 @@
1
- By default, the puppetmaster package is configured in
2
- /etc/default/puppetmaster to use the WEBrick server included in
3
- the application. This server is single-threaded, very slow, and tends
4
- to fall over when you get close to 30 nodes. You will start to see
5
- connection-reset or End-of-file errors when this happens.
6
-
7
- For production deployments, use a server that can scale better than WEBrick,
8
- such as Passenger (aka mod_rails), with a front-end web-proxy such as Apache.
9
-
10
- To run Passenger with Apache, install the puppetmaster-passenger package. It
11
- automatically sets up an apache2 virtual host that runs puppetmaster under
12
- Passenger.
13
-
14
- For more information, see https://puppet.com/docs/puppet/latest/passenger.html.
15
- For information about the Puppet-designed Puppet Server, which deprecates
16
- the Passenger/Apache stack, see
17
- https://puppet.com/docs/puppetserver/latest/.
@@ -1,14 +0,0 @@
1
- # Defaults for puppetmaster - sourced by /etc/init.d/puppetmaster
2
-
3
- # Enable puppetmaster service?
4
- # Setting this to "yes" allows the puppet master service to run.
5
- # Setting this to "no" keeps the puppet master service from running.
6
- #
7
- # If you are using Passenger, you should have this set to "no."
8
- START=yes
9
-
10
- # Startup options
11
- DAEMON_OPTS=""
12
-
13
- # On what port should the puppet master listen? (default: 8140)
14
- PORT=8140
@@ -1,137 +0,0 @@
1
- #! /bin/sh
2
- ### BEGIN INIT INFO
3
- # Provides: puppetmaster
4
- # Required-Start: $network $named $remote_fs $syslog
5
- # Required-Stop: $network $named $remote_fs $syslog
6
- # Default-Start: 2 3 4 5
7
- # Default-Stop: 0 1 6
8
- ### END INIT INFO
9
-
10
- PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
11
- DAEMON=/usr/bin/puppet
12
- DAEMON_OPTS=""
13
- NAME=master
14
- DESC="puppet master"
15
-
16
- test -x $DAEMON || exit 0
17
-
18
- [ -r /etc/default/puppetmaster ] && . /etc/default/puppetmaster
19
-
20
- . /lib/lsb/init-functions
21
-
22
- if [ ! -d /var/run/puppet ]; then
23
- mkdir -p /var/run/puppet
24
- fi
25
-
26
- chown puppet:puppet /var/run/puppetlabs
27
-
28
- mongrel_warning="The mongrel servertype is no longer built-in to Puppet. It
29
- appears as though mongrel is being used, as the number of puppetmasters is
30
- greater than one. Starting the puppetmaster service will not behave as expected
31
- until this is resolved. Only the first port has been used in the service, and
32
- only one puppetmaster has been started. These settings are defined in
33
- /etc/default/puppetmaster"
34
-
35
-
36
- # Warn about removed and unsupported mongrel servertype
37
- if ([ -n "$PUPPETMASTERS" ] && [ ${PUPPETMASTERS} -gt 1 ]) || [ "${SERVERTYPE}" = "mongrel" ]; then
38
- echo $mongrel_warning
39
- echo
40
- fi
41
-
42
- is_true() {
43
- if [ "x$1" = "xtrue" -o "x$1" = "xyes" -o "x$1" = "x0" ] ; then
44
- return 0
45
- else
46
- return 1
47
- fi
48
- }
49
-
50
- start_puppet_master() {
51
- if is_true "$START" ; then
52
- start-stop-daemon --start --quiet --pidfile /var/run/puppetlabs/${NAME}.pid \
53
- --startas $DAEMON -- $NAME $DAEMON_OPTS --masterport=$PORT
54
- else
55
- echo ""
56
- echo "puppetmaster not configured to start, please edit /etc/default/puppetmaster to enable"
57
- fi
58
- }
59
-
60
- stop_puppet_master() {
61
- start-stop-daemon --stop --retry TERM/10/KILL/5 --quiet --oknodo --pidfile /var/run/puppetlabs/${NAME}.pid
62
- }
63
-
64
- status_puppet_master() {
65
- if ( ! type status_of_proc > /dev/null 2>&1 ) ; then
66
- status_of_proc() {
67
- local pidfile daemon name status
68
- pidfile=
69
- OPTIND=1
70
- while getopts p: opt ; do
71
- case "$opt" in
72
- p) pidfile="$OPTARG";;
73
- esac
74
- done
75
- shift $(($OPTIND - 1))
76
-
77
- if [ -n "$pidfile" ]; then
78
- pidfile="-p $pidfile"
79
- fi
80
- daemon="$1"
81
- name="$2"
82
-
83
- status="0"
84
- pidofproc $pidfile $daemon >/dev/null || status="$?"
85
- if [ "$status" = 0 ]; then
86
- log_success_msg "$name is running"
87
- return 0
88
- elif [ "$status" = 4 ]; then
89
- log_failure_msg "could not access PID file for $name"
90
- return $status
91
- else
92
- log_failure_msg "$name is not running"
93
- return $status
94
- fi
95
- }
96
- fi
97
-
98
- if is_true "$START" ; then
99
- status_of_proc -p "/var/run/puppetlabs/${NAME}.pid" "${DAEMON}" "${NAME}"
100
- else
101
- echo ""
102
- echo "puppetmaster not configured to start"
103
- status_of_proc -p "/var/run/puppetlabs/${NAME}.pid" "${DAEMON}" "${NAME}"
104
- fi
105
- }
106
-
107
-
108
- case "$1" in
109
- start)
110
- log_begin_msg "Starting $DESC"
111
- start_puppet_master
112
- log_end_msg $?
113
- ;;
114
- stop)
115
- log_begin_msg "Stopping $DESC"
116
- stop_puppet_master
117
- log_end_msg $?
118
- ;;
119
- reload)
120
- # Do nothing, as Puppetmaster rechecks its config automatically
121
- ;;
122
- status)
123
- status_puppet_master
124
- ;;
125
- restart|force-reload)
126
- log_begin_msg "Restarting $DESC"
127
- stop_puppet_master
128
- start_puppet_master
129
- log_end_msg $?
130
- ;;
131
- *)
132
- echo "Usage: $0 {start|stop|status|restart|force-reload}" >&2
133
- exit 1
134
- ;;
135
- esac
136
-
137
- # vim: tabstop=4:softtabstop=4:shiftwidth=4:expandtab
@@ -1,3 +0,0 @@
1
- # Man pages are automatically generated, not much to do here
2
- puppetmaster binary: manpage-has-bad-whatis-entry
3
- puppetmaster binary: manpage-has-errors-from-man
@@ -1,20 +0,0 @@
1
- #!/bin/sh
2
-
3
- set -e
4
-
5
- # Remove renamed configuration files which are now handled by other
6
- # packages
7
- if dpkg-maintscript-helper supports rm_conffile 2>/dev/null; then
8
-
9
- dpkg-maintscript-helper rm_conffile \
10
- /etc/logrotate.d/puppetmaster 2.7.16-1puppetlabs1 puppetmaster -- "$@"
11
-
12
- # For systems with dpkg < 1.15.7-2
13
- else
14
-
15
- if [ -f /etc/logrotate.d/puppetmaster ]; then
16
- rm /etc/logrotate.d/puppetmaster || true
17
- fi
18
- fi
19
-
20
- #DEBHELPER#
@@ -1,5 +0,0 @@
1
- #!/bin/sh -e
2
-
3
- #DEBHELPER#
4
-
5
- exit 0
@@ -1,22 +0,0 @@
1
- #!/bin/sh
2
-
3
- set -e
4
-
5
- # Remove renamed configuration files which are now handled by other
6
- # packages
7
- if dpkg-maintscript-helper supports rm_conffile 2>/dev/null; then
8
-
9
- dpkg-maintscript-helper rm_conffile \
10
- /etc/logrotate.d/puppetmaster 2.7.16-1puppetlabs1 puppetmaster -- "$@"
11
-
12
-
13
- # For systems with dpkg < 1.15.7-2
14
- else
15
-
16
- if [ -f /etc/logrotate.d/puppetmaster ]; then
17
- rm /etc/logrotate.d/puppetmaster || true
18
- fi
19
- fi
20
-
21
-
22
- #DEBHELPER#
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.