mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
c02cba49bd
- Add ru- PKGNAMEPREFIX - improve PLIST_SUB hack for WITH_SUEXEC PR: 19976 Submitted by: maintainer
18 lines
214 B
Bash
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
|