mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-07 23:48:26 +00:00
Adds suport for systemd, creates a service for php-fpm and installs it if required Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
11 lines
234 B
Desktop File
11 lines
234 B
Desktop File
[Unit]
|
|
Description=PHP-FPM
|
|
After=network.target
|
|
[Service]
|
|
Type=forking
|
|
PIDFile=@LOCALSTATEDIR@/run/php-fpm.pid
|
|
ExecStart=@SYSCONFDIR@/init.d/php-fpm start
|
|
ExecStop=@SYSCONFDIR@/init.d/php-fpm stop
|
|
[Install]
|
|
WantedBy=multi-user.target
|