head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2002.12.26.13.40.54; author swiergot; state Exp; branches; next ; desc @@ 1.1 log @- Initial release. - Version 2.0.43. @ text @#!/bin/sh # # Start the Apache web server # case "$1" in 'start') /usr/sbin/apachectl start ;; 'stop') /usr/sbin/apachectl stop ;; 'restart') /usr/sbin/apachectl restart ;; *) echo "usage $0 start|stop|restart" ;; esac @ .