aboutsummaryrefslogtreecommitdiff
path: root/lang/php5/files/php5-fpm.init
blob: aa5397a5d1bcbc5d6d542acbcf448e9d6466f356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh /etc/rc.common
# Copyright (C) 2015 OpenWrt.org

START=50

PROG=/usr/bin/php-fpm
CONFIG=/etc/php5-fpm.conf

SERVICE_PID_FILE=/var/run/php5-fpm.pid

start_instance() {
	local section="$1"
	local enabled

	config_get_bool enabled "$section" 'enabled' 0

	[ $enabled -gt 0 ] || return 1

	service_start $PROG -y $CONFIG -g $SERVICE_PID_FILE
}

start() {
	config_load 'php5-fpm'
	config_foreach start_instance 'php5-fpm'
}

stop() {
	service_stop $PROG
}