aboutsummaryrefslogtreecommitdiffstats
path: root/main/php5/php-fpm.initd
diff options
context:
space:
mode:
Diffstat (limited to 'main/php5/php-fpm.initd')
-rw-r--r--main/php5/php-fpm.initd27
1 files changed, 27 insertions, 0 deletions
diff --git a/main/php5/php-fpm.initd b/main/php5/php-fpm.initd
new file mode 100644
index 0000000000..814c2bb264
--- /dev/null
+++ b/main/php5/php-fpm.initd
@@ -0,0 +1,27 @@
+#!/sbin/openrc-run
+
+name="PHP FastCGI Process Manager"
+cfgfile="/etc/php/php-fpm.conf"
+pidfile="/var/run/php-fpm.pid"
+command="/usr/bin/php-fpm"
+command_args="--fpm-config $cfgfile --pid $pidfile"
+required_files="$cfgfile"
+
+extra_started_commands="reload"
+
+depend() {
+ need net
+ use apache2 lighttpd nginx
+}
+
+start_pre() {
+ ebegin
+ $command $command_args -t 2>/dev/null
+ eend $?
+}
+
+reload() {
+ ebegin "Reloading $name"
+ start-stop-daemon --signal USR2 --pidfile ${pidfile} --name ${SVCNAME}
+ eend $?
+}