summaryrefslogtreecommitdiff
path: root/sysutils/puppet4/files/puppet.in
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2019-03-03 11:43:52 +0000
committerRene Ladan <rene@FreeBSD.org>2019-03-03 11:43:52 +0000
commitbc28e52bd8702af7148a063e69c24851610e1040 (patch)
tree4a487742b1507ba6929d6b4e9632f53b0e86a87d /sysutils/puppet4/files/puppet.in
parentdevel/pycharm-ce: Update to version 2018.3.5 (diff)
Remove expired ports:
2019-02-28 devel/uboot-mkimage: Use sysutils/u-boot-tools 2019-02-28 graphics/clutter-gtk: 0.10.x is unmaintained upstream and unused in the ports tree 2019-02-28 databases/puppetdb4: Puppet 4 has reached EOL 2019-02-28 sysutils/puppet4: Puppet 4 has reached EOL 2019-02-28 sysutils/puppetserver: Puppet 4 has reached EOL 2019-02-28 www/qupzilla-qt5: Project continues as www/falkon 2019-02-28 databases/puppetdb-terminus4: Puppet 4 has reached EOL 2019-03-01 sysutils/bacula-client: Unsupported. Please migrate to bacula9-server 2019-03-01 net-mgmt/nagios-check_bacula: Unsupported. Please migrate to bacula9-server 2019-03-01 security/kc: Versions 2.4.x use incompatible database format 2019-03-01 sysutils/bacula-server: Unsupported. Please migrate to bacula9-server 2019-03-01 sysutils/bacula-docs: Unsupported. Please migrate to bacula9-docs 2019-03-01 sysutils/bacula-client-static: Unsupported. Please migrate to bacula9-server 2019-03-01 sysutils/bacula-bat: Unsupported. Please migrate to bacula9-server
Notes
Notes: svn path=/head/; revision=494498
Diffstat (limited to 'sysutils/puppet4/files/puppet.in')
-rw-r--r--sysutils/puppet4/files/puppet.in49
1 files changed, 0 insertions, 49 deletions
diff --git a/sysutils/puppet4/files/puppet.in b/sysutils/puppet4/files/puppet.in
deleted file mode 100644
index 3f1010a59254..000000000000
--- a/sysutils/puppet4/files/puppet.in
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-# PROVIDE: puppet
-# REQUIRE: LOGIN
-# KEYWORD: shutdown
-
-#
-# Add the following lines to /etc/rc.conf to enable the puppet agent:
-#
-# puppet_enable="YES"
-
-. /etc/rc.subr
-
-name="puppet"
-rcvar=puppet_enable
-
-load_rc_config "$name"
-
-: ${puppet_enable="NO"}
-: ${puppet_rundir="/var/run/puppet"}
-
-command="%%PREFIX%%/bin/puppet"
-command_args="agent ${puppet_flags} --rundir=${puppet_rundir}"
-command_interpreter=%%RUBY%%
-unset puppet_flags
-
-pidfile="${puppet_rundir}/agent.pid"
-start_precmd="install -d -o puppet -g puppet ${pidfile%/*}"
-
-PATH="${PATH}:%%PREFIX%%/bin:%%PREFIX%%/sbin"
-
-# An UTF-8 locale is required
-: LC_ALL=${LC_ALL:=C.UTF-8}
-case $LC_ALL in
- *.UTF-8)
- ;;
- *.*)
- LC_ALL="${LC_ALL%.*}.UTF-8"
- ;;
- *)
- LC_ALL=C.UTF-8
- ;;
-esac
-export LC_ALL
-
-run_rc_command "$1"