Magellan Linux

Contents of /trunk/initscripts/busybox/rc/localnet

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1357 - (show annotations) (download)
Sat Jun 4 21:05:40 2011 UTC (12 years, 10 months ago) by niro
File size: 898 byte(s)
copied from original repos
1 #!/bin/sh
2 # $Header: /home/cvsd/magellan-cvs/magellan-src/busybox-initscripts/rc/localnet,v 1.1 2008-06-02 22:14:35 niro Exp $
3
4 #%rlevels: 7:s 0:k
5 #%start: 80
6 #%stop: 90
7
8 #deps
9 #%needs:
10 #%before:
11 #%after:
12
13 source /etc/conf.d/rc
14 source ${rc_functions}
15
16 #get hostname
17 HOSTNAME="$(< /etc/hostname)"
18
19 case "$1" in
20 start)
21 rc_print "Bringing up the loopback interface ..."
22 loadproc ifconfig lo 127.0.0.1
23
24 rc_print "Setting hostname to ${HOSTNAME} ..."
25 loadproc hostname ${HOSTNAME}
26
27 update_svcstatus $1
28 splash svc_started "$(basename $0)" 0
29 ;;
30
31 stop)
32 rc_print "Bringing down the loopback interface ..."
33 loadproc ifconfig lo down
34
35 update_svcstatus $1
36 splash svc_stopped "$(basename $0)" 0
37 ;;
38
39 restart)
40 $0 stop
41 sleep 1
42 $0 start
43 ;;
44
45 status)
46 rc_echo "Hostname is: $(hostname)"
47 ifconfig lo
48 ;;
49
50 *)
51 rc_echo "Usage: $0 {start|stop|restart|status}"
52 exit 1
53 ;;
54 esac