summaryrefslogtreecommitdiffstats
path: root/src.etc/init.d/httpd
blob: dc73d870762040ed537632a3193c65a971dfd933 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh /etc/rc.common

START='50'
STOP='60'

start()
{
	log 'Starting httpd'
	start-stop-daemon -S -q -n httpd -x /usr/sbin/httpd -- -h /var/www
}

stop()
{
	log 'Stopping httpd'
	start-stop-daemon -K -q -n httpd
}