clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since 35c9c4b was 163a6701, checked in by Jim Gifford <clfs@…>, 19 years ago |
r720@server (orig r718): jim | 2005-11-18 08:06:26 -0800
Added bootscripts to cross-lfs svn
|
-
Property mode
set to
100644
|
File size:
654 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 | ########################################################################
|
---|
3 | # Begin $rc_base/init.d/
|
---|
4 | #
|
---|
5 | # Description :
|
---|
6 | #
|
---|
7 | # Authors :
|
---|
8 | #
|
---|
9 | # Version : 00.00
|
---|
10 | #
|
---|
11 | # Notes :
|
---|
12 | #
|
---|
13 | ########################################################################
|
---|
14 |
|
---|
15 | . /etc/sysconfig/rc
|
---|
16 | . ${rc_functions}
|
---|
17 |
|
---|
18 | case "${1}" in
|
---|
19 | start)
|
---|
20 | boot_mesg "Starting..."
|
---|
21 | loadproc
|
---|
22 | ;;
|
---|
23 |
|
---|
24 | stop)
|
---|
25 | boot_mesg "Stopping..."
|
---|
26 | killproc
|
---|
27 | ;;
|
---|
28 |
|
---|
29 | reload)
|
---|
30 | boot_mesg "Reloading..."
|
---|
31 | reloadproc
|
---|
32 | ;;
|
---|
33 |
|
---|
34 | restart)
|
---|
35 | ${0} stop
|
---|
36 | sleep 1
|
---|
37 | ${0} start
|
---|
38 | ;;
|
---|
39 |
|
---|
40 | status)
|
---|
41 | statusproc
|
---|
42 | ;;
|
---|
43 |
|
---|
44 | *)
|
---|
45 | echo "Usage: ${0} {start|stop|reload|restart|status}"
|
---|
46 | exit 1
|
---|
47 | ;;
|
---|
48 | esac
|
---|
49 |
|
---|
50 | # End $rc_base/init.d/
|
---|
Note:
See
TracBrowser
for help on using the repository browser.