1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/russian/apache13-modssl/files/rc.apache.sh
Alexander Langer c02cba49bd - Update RA-part to 29.5.
- Add ru- PKGNAMEPREFIX
- improve PLIST_SUB hack for WITH_SUEXEC

PR:		19976
Submitted by:	maintainer
2000-07-19 10:02:25 +00:00

18 lines
214 B
Bash

#!/bin/sh
case $1 in
start)
!!PREFIX!!/sbin/apachectl startssl
echo -n ' apache'
;;
stop)
!!PREFIX!!/sbin/apachectl stop
;;
*)
echo "usage: `basename $0` {start|stop}" >&2
exit 64
;;
esac