]> git.ipfire.org Git - ipfire-2.x.git/blame_incremental - src/initscripts/init.d/localnet
IPFire-Seeder gebaut...
[ipfire-2.x.git] / src / initscripts / init.d / localnet
... / ...
CommitLineData
1#!/bin/sh
2########################################################################
3# Begin $rc_base/init.d/localnet
4#
5# Description : Loopback device
6#
7# Authors : Gerard Beekmans - gerard@linuxfromscratch.org
8#
9# Version : 00.00
10#
11# Notes :
12#
13########################################################################
14
15. /etc/sysconfig/rc
16. ${rc_functions}
17
18case "${1}" in
19 start)
20 eval $(/usr/local/bin/readhash /var/ipfire/main/settings)
21 boot_mesg "Bringing up the loopback interface..."
22 ip addr add 127.0.0.1/8 label lo dev lo
23 ip link set lo up
24 evaluate_retval
25
26 boot_mesg "Setting hostname to ${HOSTNAME}..."
27 hostname ${HOSTNAME}
28 evaluate_retval
29
30 if [ -z "$DOMAINNAME" ]; then
31 boot_mesg "Setting domainname to ${DOMAINNAME}..."
32 domainname ${DOMAINNAME}
33 evaluate_retval
34 fi
35 ;;
36
37 stop)
38 boot_mesg "Bringing down the loopback interface..."
39 ip link set lo down
40 evaluate_retval
41 ;;
42
43 restart)
44 ${0} stop
45 sleep 1
46 ${0} start
47 ;;
48
49 status)
50 eval $(/usr/local/bin/readhash /var/ipfire/main/settings)
51 echo "Hostname is: $(hostname)"
52 ip link show lo
53 ;;
54
55 *)
56 echo "Usage: ${0} {start|stop|restart|status}"
57 exit 1
58 ;;
59esac
60
61# End $rc_base/init.d/localnet