blob: 8b5a24f5e18a2808580023926e2e70358ac8e63f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#!/bin/sh
if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
echo "$0: Cannot determine the PREFIX" >&2
exit 1
fi
#
# 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
#
case "$1" in
start)
if [ -x ${PREFIX}/sbin/apachectl ]
then
new_key
${PREFIX}/sbin/apachectl start && 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
|