#!/bin/sh /etc/rc.common 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 }