]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - src/initscripts/init.d/apache
core81: set need reboot flag and restart apache.
[people/teissler/ipfire-2.x.git] / src / initscripts / init.d / apache
1 #!/bin/sh
2 # Begin $rc_base/init.d/apache
3
4 # Based on sysklogd script from LFS-3.1 and earlier.
5 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
6
7 . /etc/sysconfig/rc
8 . $rc_functions
9
10 case "$1" in
11 start)
12 if [ -f /etc/httpd/server.key -a -f /etc/httpd/server.crt -a -f /etc/httpd/server.csr ]; then
13 /usr/local/bin/httpscert read >/dev/null 2>&1
14 else
15 boot_mesg "Generating HTTPS host certificate (may take a couple of minutes)..."
16 /usr/local/bin/httpscert new >/dev/null 2>&1
17 evaluate_retval
18
19 # Make sure that the key is written to disk.
20 sync
21 fi
22 boot_mesg "Starting Apache daemon..."
23 /usr/sbin/apachectl -k start
24 evaluate_retval
25 ;;
26
27 stop)
28 boot_mesg "Stopping Apache daemon..."
29 /usr/sbin/apachectl -k stop
30 evaluate_retval
31 ;;
32
33 restart)
34 boot_mesg "Restarting Apache daemon..."
35 /usr/sbin/apachectl -k restart
36 evaluate_retval
37 ;;
38
39 reload)
40 boot_mesg "Reloading Apache daemon..."
41 /usr/sbin/apachectl -k graceful
42 evaluate_retval
43 ;;
44
45 status)
46 statusproc /usr/sbin/httpd
47 ;;
48
49 *)
50 echo "Usage: $0 {start|stop|restart|status}"
51 exit 1
52 ;;
53 esac
54
55 # End $rc_base/init.d/apache