|
Last change
on this file since 1824 was
1690,
checked in by broder, 17 years ago
|
|
Whoops - forgot to drop an option to k5start
|
-
Property svn:executable set to
*
|
|
File size:
1.5 KB
|
| Rev | Line | |
|---|
| [768] | 1 | #!/usr/bin/pagsh -e |
|---|
| [1045] | 2 | ### BEGIN INIT INFO |
|---|
| 3 | # Provides: apache2 |
|---|
| 4 | # Required-Start: $local_fs $remote_fs $network $syslog openafs-client |
|---|
| 5 | # Required-Stop: $local_fs $remote_fs $network $syslog openafs-client |
|---|
| 6 | # Default-Start: 2 3 4 5 |
|---|
| 7 | # Default-Stop: 0 1 6 |
|---|
| 8 | # Short-Description: Start/stop apache2 web server |
|---|
| 9 | ### END INIT INFO |
|---|
| [768] | 10 | # |
|---|
| 11 | # Apache kstart wrapper by anders. |
|---|
| 12 | # |
|---|
| 13 | |
|---|
| 14 | SCRIPT=/etc/init.d/apache2.invirt-orig |
|---|
| 15 | KSTART_PIDFILE=/var/run/k5start-apache2.pid |
|---|
| [1145] | 16 | KSTART_KEYTAB=/etc/invirt/keytab |
|---|
| [768] | 17 | |
|---|
| 18 | export AFSCELL=sipb.mit.edu |
|---|
| 19 | |
|---|
| 20 | kstart_start () { |
|---|
| 21 | TMP_PIDFILE=$(mktemp /tmp/k5start-apache2.pid-XXXXXX) |
|---|
| 22 | chown www-data "$TMP_PIDFILE" |
|---|
| 23 | export KRB5CCNAME=$(mktemp /tmp/krb5cc_33.kstart-XXXXXX) |
|---|
| 24 | chown www-data $KRB5CCNAME |
|---|
| 25 | /sbin/start-stop-daemon --start --pidfile "$TMP_PIDFILE" -c www-data \ |
|---|
| 26 | --exec /usr/bin/k5start -- -b -p "$TMP_PIDFILE" \ |
|---|
| [1690] | 27 | -f "$KSTART_KEYTAB" -K10 -S afs -I "$AFSCELL" -t \ |
|---|
| [1688] | 28 | "daemon/$(hostname -f)" |
|---|
| [768] | 29 | cat "$TMP_PIDFILE" >|"$KSTART_PIDFILE" |
|---|
| 30 | rm -f "$TMP_PIDFILE" |
|---|
| 31 | } |
|---|
| 32 | kstart_stop () { |
|---|
| 33 | if [ -e $KSTART_PIDFILE ]; then |
|---|
| 34 | /sbin/start-stop-daemon --stop --pidfile $KSTART_PIDFILE |
|---|
| 35 | rm -f $KSTART_PIDFILE |
|---|
| 36 | else |
|---|
| 37 | echo -n " ... no kstart pidfile" |
|---|
| 38 | fi |
|---|
| 39 | } |
|---|
| 40 | |
|---|
| 41 | case "$1" in |
|---|
| 42 | start) |
|---|
| 43 | echo -n "Starting kstart for Apache2: k5start" |
|---|
| 44 | kstart_start |
|---|
| 45 | echo "." |
|---|
| 46 | exec "$SCRIPT" start |
|---|
| 47 | ;; |
|---|
| 48 | stop) |
|---|
| 49 | "$SCRIPT" stop |
|---|
| 50 | echo -n "Stopping kstart for Apache2: k5start" |
|---|
| 51 | kstart_stop |
|---|
| 52 | echo "." |
|---|
| 53 | ;; |
|---|
| 54 | restart|force-reload) |
|---|
| 55 | "$0" stop |
|---|
| 56 | sleep 1 |
|---|
| 57 | "$0" start |
|---|
| 58 | ;; |
|---|
| 59 | *) |
|---|
| 60 | exec "$SCRIPT" "$@" |
|---|
| 61 | ;; |
|---|
| 62 | esac |
|---|
Note: See
TracBrowser
for help on using the repository browser.