diff options
author | Raphael Geissert <geissert@php.net> | 2010-07-29 19:13:42 +0000 |
---|---|---|
committer | Raphael Geissert <geissert@php.net> | 2010-07-29 19:13:42 +0000 |
commit | 444bba79ba886d2ab6af52229afbf6b40b0d556d (patch) | |
tree | 8334382a1d76ff214567cb812ebcdc4abe252a6b /sapi | |
parent | 110fab9803ac0b3462e37e286b17da7f6329a734 (diff) | |
download | php-git-444bba79ba886d2ab6af52229afbf6b40b0d556d.tar.gz |
Fix required facilities for php-fpm's init script
$all should only be used in rare, and very specific, cases.
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/fpm/init.d.php-fpm.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/fpm/init.d.php-fpm.in b/sapi/fpm/init.d.php-fpm.in index dfeb69aebc..766d10207d 100644 --- a/sapi/fpm/init.d.php-fpm.in +++ b/sapi/fpm/init.d.php-fpm.in @@ -2,8 +2,8 @@ ### BEGIN INIT INFO # Provides: php-fpm -# Required-Start: $all -# Required-Stop: $all +# Required-Start: $remote_fs $network +# Required-Stop: $remote_fs $network # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: starts php-fpm |