1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # T2 SDE: package/*/apache/apache.init
3 # Copyright (C) 2004 - 2021 The T2 SDE Project
4 # Copyright (C) 1998 - 2004 ROCK Linux Project
6 # This Copyright note is generated by scripts/Create-CopyPatch,
7 # more information can be found in the files COPYING and README.
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License version 2.
11 # --- T2-COPYRIGHT-NOTE-END ---
13 # ROCK Linux /etc/rc.d/init.d/apache
15 # Desc: The Apache http server
21 block_begin(start, `Starting http server (apache)')
22 check(`D_sbindir/apachectl -k start')
23 i=10; while [ ! -s D_localstatedir/logs/httpd.pid ] &&
24 [ "$(( i-- ))" -gt 0 ]; do
28 block_begin(stop, `Stopping http server (apache)')
29 check(`D_sbindir/apachectl -k stop')
30 i=10; while [ -s D_localstatedir/logs/httpd.pid ] &&
31 [ "$(( i-- ))" -gt 0 ]; do
35 block_begin(restart, `Restarting http server (apache)')
36 check(`D_sbindir/apachectl -k restart')