Dash:
[t2-trunk.git] / package / network / apache / apache.init
blob3182d40777cc08e7272b7879bce34749fa6cbe15
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
5
6 # This Copyright note is generated by scripts/Create-CopyPatch,
7 # more information can be found in the files COPYING and README.
8
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
16 # Runlevel: 55 rcX
19 main_begin
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
25               sleep 1; done
26     block_end
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
32               sleep 1; done
33     block_end
35     block_begin(restart, `Restarting http server (apache)')
36         check(`D_sbindir/apachectl -k restart')
37     block_end
39 main_end