#!/bin/sh /etc/rc.common START='50' STOP='60' start() { log 'Starting httpd' start-stop-daemon -S -q -p /var/run/httpd.pid -m \ -x /usr/sbin/httpd -b -- -f -h /var/www } stop() { log 'Stopping httpd' start-stop-daemon -K -q -p /var/run/httpd.pid }