mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-29 04:17:07 +00:00
10 lines
241 B
Bash
10 lines
241 B
Bash
#!/bin/bash
|
|
|
|
NAME=php5-fpm
|
|
DAEMON=/usr/sbin/$NAME
|
|
DAEMON_ARGS="--fpm-config /etc/php5/fpm/php-fpm.conf -F"
|
|
|
|
# Read configuration variable file if it is present
|
|
[ -r /etc/default/$NAME ] && . /etc/default/$NAME
|
|
|
|
exec $DAEMON $DAEMON_ARGS 2>&1 |