1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/www/apache13-fp/files/apache.sh.tmpl
Bill Fumerola e6503fb81a Upgrade to the latest and greatest apache/frontpage combo.
PR:		ports/16974
Submitted by:	maintainer
2000-03-01 06:25:15 +00:00

60 lines
892 B
Bash

#!/bin/sh
#
#
# Create New FrontPage suidkey
#
new_key() {
CUR_UMASK=`umask`
skdir=PREFIX/frontpage/version4.0/apache-fp
PERL=PERL5
if [ -x PREFIX/libexec/apache/mod_frontpage.so ]
then
#NOTE: We need Perl 5, to generate a new key
if [ -x ${PERL} ]
then
umask 077
${PERL} -e '@a=(split(//, "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*-=_+")); print((map {$a[rand(scalar @a)]} (1..128)), "\n");' > $skdir/suidkey
umask ${CUR_UMASK}
fi
fi
}
#
# Main
#
if [ -x PREFIX/libexec/apache/mod_frontpage.so ]
then
MODULES="_FP"
fi
case "$1" in
start)
if [ -x PREFIX/sbin/apachectl ]
then
new_key
PREFIX/sbin/apachectl start${MODULES} && echo -n ' httpd'
fi
;;
stop)
if [ -r /var/run/httpd.pid ]
then
PREFIX/sbin/apachectl stop && echo -n ' httpd'
fi
;;
*)
echo "usage: $0 {start|stop}" 1>&2
exit 64
;;
esac