source: bootscripts/contrib/lsb-v3/init.d/localnet@ 5597318

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 5597318 was 5597318, checked in by DJ Lucas <dj@…>, 14 years ago

Standardized urinary comparisonsCn tests

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9324 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 2.2 KB
Line 
1#!/bin/sh
2# Begin /etc/init.d/localnet
3
4### BEGIN INIT INFO
5# Provides: localnet
6# Required-Start: $local_fs
7# Should-Start:
8# Required-Stop:
9# Should-Stop:
10# Default-Start: S
11# Default-Stop: 0 6
12# Short-Description: Starts the local network.
13# Description: Sets the hostname of the machine and starts the
14# loopback interface.
15# X-LFS-Provided-By: LFS
16### END INIT INFO
17
18. /lib/lsb/init-functions
19. /etc/sysconfig/network
20
21case "${1}" in
22 start)
23 ip addr add 127.0.0.1/8 label lo dev lo
24 ip link set lo up
25 if [ "${?}" -eq "0" ]
26 then
27 log_success_msg "Bringing up the loopback interface..."
28 else
29 log_failure_msg "Bringing up the loopback interface..."
30 fi
31
32 hostname "${HOSTNAME}"
33 if [ "${?}" -eq "0" ]
34 then
35 log_success_msg "Setting hostname to ${HOSTNAME}..."
36 else
37 log_failure_msg "Setting hostname to ${HOSTNAME}..."
38 fi
39
40 ;;
41
42 stop)
43 ip link set lo down
44 if [ "${?}" -eq "0" ]
45 then
46 log_success_msg "Bringing down the loopback interface..."
47 else
48 log_failure_msg "Bringing down the loopback interface..."
49 fi
50
51 ;;
52
53 restart)
54 ip link set lo down
55 retval="${?}"
56 sleep 1
57 ip addr add 127.0.0.1/8 label lo dev lo
58 retval=$(( "${retval}" + "${?}" ))
59 ip link set lo up
60 retval=$(( "${retval}" + "${?}" ))
61 hostname "${HOSTNAME}"
62 retval=$(( "${retval}" + "${?}" ))
63 if [ "${retval}" -eq "0" ]
64 then
65 log_success_msg "Restarting local network..."
66 else
67 log_failure_msg "Restarting local network..."
68 fi
69 ;;
70
71 status)
72 log_success_msg "Hostname is: ${INFO}$(hostname)${NORMAL}"
73 ip link show lo
74 ;;
75
76 *)
77 echo "Usage: ${0} {start|stop|restart|status}"
78 exit 1
79 ;;
80esac
81
82# End /etc/init.d/localnet
Note: See TracBrowser for help on using the repository browser.