#!/bin/sh /etc/rc.common

START='S50'
STOP='K60'

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
}