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.
- checksums.yaml +4 -4
- data/Gemfile.lock +6 -6
- data/{ext → examples/enc}/regexp_nodes/classes/databases +0 -0
- data/{ext → examples/enc}/regexp_nodes/classes/webservers +0 -0
- data/{ext → examples/enc}/regexp_nodes/environment/development +0 -0
- data/{ext → examples/enc}/regexp_nodes/parameters/service/prod +0 -0
- data/{ext → examples/enc}/regexp_nodes/parameters/service/qa +0 -0
- data/{ext → examples/enc}/regexp_nodes/parameters/service/sandbox +0 -0
- data/{ext → examples/enc}/regexp_nodes/regexp_nodes.rb +0 -0
- data/{ext → examples}/nagios/check_puppet.rb +2 -2
- data/ext/README.md +13 -0
- data/lib/puppet/configurer.rb +155 -46
- data/lib/puppet/defaults.rb +51 -26
- data/lib/puppet/environments.rb +66 -26
- data/lib/puppet/file_serving/configuration.rb +2 -0
- data/lib/puppet/file_serving/configuration/parser.rb +2 -0
- data/lib/puppet/file_serving/mount/scripts.rb +24 -0
- data/lib/puppet/functions/find_template.rb +2 -2
- data/lib/puppet/http/service/compiler.rb +6 -1
- data/lib/puppet/indirector/catalog/compiler.rb +21 -3
- data/lib/puppet/indirector/catalog/rest.rb +1 -0
- data/lib/puppet/indirector/terminus.rb +4 -0
- data/lib/puppet/module/plan.rb +0 -1
- data/lib/puppet/module/task.rb +1 -1
- data/lib/puppet/module_tool/applications/installer.rb +8 -4
- data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
- data/lib/puppet/node/environment.rb +10 -11
- data/lib/puppet/pops/serialization/to_data_converter.rb +18 -6
- data/lib/puppet/provider/package/pkg.rb +8 -1
- data/lib/puppet/provider/service/launchd.rb +1 -1
- data/lib/puppet/provider/service/systemd.rb +1 -1
- data/lib/puppet/provider/user/useradd.rb +42 -9
- data/lib/puppet/transaction/persistence.rb +11 -1
- data/lib/puppet/transaction/report.rb +15 -1
- data/lib/puppet/type.rb +1 -1
- data/lib/puppet/type/exec.rb +10 -1
- data/lib/puppet/type/file.rb +6 -6
- data/lib/puppet/type/filebucket.rb +2 -2
- data/lib/puppet/version.rb +1 -1
- data/locales/puppet.pot +134 -94
- data/man/man5/puppet.conf.5 +65 -25
- data/man/man8/puppet-agent.8 +1 -1
- data/man/man8/puppet-apply.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +1 -1
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +1 -1
- data/man/man8/puppet-filebucket.8 +1 -1
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-module.8 +3 -3
- data/man/man8/puppet-node.8 +1 -1
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +1 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +1 -1
- data/man/man8/puppet-ssl.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/integration/application/agent/lib/facter/agent_spec_role.rb +3 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Gemfile +4 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Rakefile +3 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/lib/puppet/functions/l10n.rb +8 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/config.yaml +25 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/ja/puppet-l10n.po +19 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/puppet-l10n.pot +20 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/metadata.json +8 -0
- data/spec/integration/application/agent_spec.rb +102 -52
- data/spec/integration/application/filebucket_spec.rb +5 -0
- data/spec/integration/configurer_spec.rb +17 -1
- data/spec/integration/l10n/compiler_spec.rb +37 -0
- data/spec/lib/puppet_spec/modules.rb +13 -2
- data/spec/lib/puppet_spec/puppetserver.rb +15 -0
- data/spec/shared_behaviours/documentation_on_faces.rb +0 -2
- data/spec/shared_contexts/l10n.rb +27 -0
- data/spec/spec_helper.rb +1 -10
- data/spec/unit/configurer_spec.rb +265 -54
- data/spec/unit/environments_spec.rb +150 -1
- data/spec/unit/file_serving/configuration/parser_spec.rb +23 -0
- data/spec/unit/file_serving/configuration_spec.rb +12 -4
- data/spec/unit/file_serving/mount/scripts_spec.rb +69 -0
- data/spec/unit/functions/logging_spec.rb +1 -0
- data/spec/unit/http/service/compiler_spec.rb +8 -0
- data/spec/unit/indirector/catalog/compiler_spec.rb +87 -0
- data/spec/unit/indirector/catalog/rest_spec.rb +8 -0
- data/spec/unit/interface/action_spec.rb +0 -9
- data/spec/unit/module_spec.rb +14 -0
- data/spec/unit/module_tool/applications/installer_spec.rb +39 -12
- data/spec/unit/pops/parser/parse_containers_spec.rb +0 -11
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +58 -0
- data/spec/unit/provider/package/pkg_spec.rb +19 -5
- data/spec/unit/provider/service/launchd_spec.rb +11 -0
- data/spec/unit/provider/service/systemd_spec.rb +1 -1
- data/spec/unit/provider/user/useradd_spec.rb +3 -2
- metadata +34 -94
- data/ext/README.environment +0 -8
- data/ext/dbfix.sql +0 -132
- data/ext/debian/README.Debian +0 -8
- data/ext/debian/README.source +0 -2
- data/ext/debian/TODO.Debian +0 -1
- data/ext/debian/changelog.erb +0 -1122
- data/ext/debian/compat +0 -1
- data/ext/debian/control +0 -144
- data/ext/debian/copyright +0 -339
- data/ext/debian/docs +0 -1
- data/ext/debian/fileserver.conf +0 -41
- data/ext/debian/puppet-common.dirs +0 -13
- data/ext/debian/puppet-common.install +0 -3
- data/ext/debian/puppet-common.lintian-overrides +0 -5
- data/ext/debian/puppet-common.manpages +0 -28
- data/ext/debian/puppet-common.postinst +0 -35
- data/ext/debian/puppet-common.postrm +0 -33
- data/ext/debian/puppet-el.dirs +0 -1
- data/ext/debian/puppet-el.emacsen-install +0 -25
- data/ext/debian/puppet-el.emacsen-remove +0 -11
- data/ext/debian/puppet-el.emacsen-startup +0 -9
- data/ext/debian/puppet-el.install +0 -1
- data/ext/debian/puppet-testsuite.install +0 -2
- data/ext/debian/puppet-testsuite.lintian-overrides +0 -4
- data/ext/debian/puppet.lintian-overrides +0 -3
- data/ext/debian/puppet.logrotate +0 -20
- data/ext/debian/puppet.postinst +0 -20
- data/ext/debian/puppet.postrm +0 -20
- data/ext/debian/puppet.preinst +0 -20
- data/ext/debian/puppetmaster-common.install +0 -2
- data/ext/debian/puppetmaster-common.manpages +0 -2
- data/ext/debian/puppetmaster-common.postinst +0 -6
- data/ext/debian/puppetmaster-passenger.dirs +0 -4
- data/ext/debian/puppetmaster-passenger.postinst +0 -162
- data/ext/debian/puppetmaster-passenger.postrm +0 -61
- data/ext/debian/puppetmaster.README.debian +0 -17
- data/ext/debian/puppetmaster.default +0 -14
- data/ext/debian/puppetmaster.init +0 -137
- data/ext/debian/puppetmaster.lintian-overrides +0 -3
- data/ext/debian/puppetmaster.postinst +0 -20
- data/ext/debian/puppetmaster.postrm +0 -5
- data/ext/debian/puppetmaster.preinst +0 -22
- data/ext/debian/rules +0 -132
- data/ext/debian/source/format +0 -1
- data/ext/debian/source/options +0 -1
- data/ext/debian/vim-puppet.README.Debian +0 -13
- data/ext/debian/vim-puppet.dirs +0 -5
- data/ext/debian/vim-puppet.yaml +0 -7
- data/ext/debian/watch +0 -2
- data/ext/freebsd/puppetd +0 -26
- data/ext/freebsd/puppetmasterd +0 -26
- data/ext/gentoo/conf.d/puppet +0 -5
- data/ext/gentoo/conf.d/puppetmaster +0 -12
- data/ext/gentoo/init.d/puppet +0 -38
- data/ext/gentoo/init.d/puppetmaster +0 -51
- data/ext/gentoo/puppet/fileserver.conf +0 -41
- data/ext/ips/puppet-agent +0 -44
- data/ext/ips/puppet-master +0 -44
- data/ext/ips/puppet.p5m.erb +0 -12
- data/ext/ips/puppetagent.xml +0 -42
- data/ext/ips/puppetmaster.xml +0 -42
- data/ext/ips/rules +0 -19
- data/ext/ips/transforms +0 -34
- data/ext/ldap/puppet.schema +0 -24
- data/ext/logcheck/puppet +0 -23
- data/ext/osx/file_mapping.yaml +0 -28
- data/ext/osx/postflight.erb +0 -109
- data/ext/osx/preflight.erb +0 -52
- data/ext/osx/prototype.plist.erb +0 -38
- data/ext/redhat/fileserver.conf +0 -41
- data/ext/redhat/logrotate +0 -21
- data/ext/redhat/puppet.spec.erb +0 -841
- data/ext/redhat/server.init +0 -128
- data/ext/redhat/server.sysconfig +0 -13
- data/ext/solaris/pkginfo +0 -6
- data/ext/solaris/smf/puppetd.xml +0 -77
- data/ext/solaris/smf/puppetmasterd.xml +0 -77
- data/ext/solaris/smf/svc-puppetd +0 -71
- data/ext/solaris/smf/svc-puppetmasterd +0 -67
- data/ext/suse/puppet.spec +0 -310
- data/ext/suse/server.init +0 -173
- data/ext/yaml_nodes.rb +0 -105
- data/spec/unit/indirector/store_configs_spec.rb +0 -7
data/ext/debian/vim-puppet.dirs
DELETED
data/ext/debian/vim-puppet.yaml
DELETED
data/ext/debian/watch
DELETED
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"
|
data/ext/freebsd/puppetmasterd
DELETED
@@ -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"
|
data/ext/gentoo/conf.d/puppet
DELETED
@@ -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"
|
data/ext/gentoo/init.d/puppet
DELETED
@@ -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
|
-
|
data/ext/ips/puppet-master
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
|
-
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
|
-
|
data/ext/ips/puppet.p5m.erb
DELETED
@@ -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
|
data/ext/ips/puppetagent.xml
DELETED
@@ -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>
|
data/ext/ips/puppetmaster.xml
DELETED
@@ -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}
|