summaryrefslogtreecommitdiff
path: root/lang/php56/files/php-fpm.in
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2019-01-01 13:52:46 +0000
committerRene Ladan <rene@FreeBSD.org>2019-01-01 13:52:46 +0000
commitba09f7ee95cee49a75d1ecb50f4be68f99de394a (patch)
treef7075798a9a1abe4f41bfb7a9ae6bd8387a1e92a /lang/php56/files/php-fpm.in
parentsysutils/policykit-qt, sysutils/qzeitgeist: remove dead variable USE_KDE (diff)
Remove expired ports:
2018-12-30 textproc/pecl-xdiff: Works only with EOL php 5.6 2019-01-01 www/mod_http2-devel: Use the module that is shipped with Apache 2.4 2019-01-01 www/varnish5: Varnish 5 is Retired 2018-12-30 security/pecl-ssh2-0: Works only with EOL php 5.6 2019-01-01 security/bitwarden-ruby: Expects very specific rubygem versions for new updates. Please follow instructions in git repo. 2018-12-30 devel/pecl-intl: Works only with EOL php 5.6 2018-12-30 devel/pecl-APCu4: Works only with EOL php 5.6 2018-12-30 databases/pecl-memcache: Works only with EOL php 5.6 2018-12-30 databases/pecl-memcached2: Works only with EOL php 5.6 2018-12-30 math/pecl-bitset2: Works only with EOL php 5.6 2019-01-01 multimedia/zoneminder-h264: h264 feature was commited to main branch, please upgrade to www/zoneminder 2019-01-01 lang/php56: Security Support ends on 31 Dec 2018
Notes
Notes: svn path=/head/; revision=488894
Diffstat (limited to 'lang/php56/files/php-fpm.in')
-rw-r--r--lang/php56/files/php-fpm.in54
1 files changed, 0 insertions, 54 deletions
diff --git a/lang/php56/files/php-fpm.in b/lang/php56/files/php-fpm.in
deleted file mode 100644
index dfd243f88fad..000000000000
--- a/lang/php56/files/php-fpm.in
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-# PROVIDE: php-fpm
-# REQUIRE: LOGIN
-# KEYWORD: shutdown
-
-#
-# Add the following line to /etc/rc.conf to enable php-fpm:
-# php_fpm_enable="YES"
-#
-
-. /etc/rc.subr
-
-name="php_fpm"
-rcvar=php_fpm_enable
-
-start_precmd="php_fpm_checkconfig"
-restart_precmd="php_fpm_checkconfig"
-reload_precmd="php_fpm_checkconfig"
-configtest_cmd="php_fpm_checkconfig"
-
-load_rc_config "$name"
-
-: ${php_fpm_enable="NO"}
-
-extra_commands="reload configtest logrotate"
-
-command="%%PREFIX%%/sbin/php-fpm"
-pidfile="/var/run/php-fpm.pid"
-sig_stop="QUIT"
-sig_reload="USR2"
-logrotate_cmd="php_fpm_logrotate"
-
-required_files="%%PREFIX%%/etc/php-fpm.conf"
-
-php_fpm_logrotate() {
- if [ -z "$rc_pid" ]; then
- _run_rc_notrunning
- return 1
- fi
- echo "Rotating logs $name."
- kill -USR1 $rc_pid
-}
-
-php_fpm_checkconfig()
-{
- echo "Performing sanity check on php-fpm configuration:"
- eval ${command} -t
-}
-
-run_rc_command "$1"