aboutsummaryrefslogtreecommitdiffstats
path: root/lsb-bootscripts/etc/init.d/localnet
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2012-08-29 20:45:23 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2012-08-29 20:45:23 +0000
commitcb02946abfe632bc90f1eaa302b2d8d4eb73e5c9 (patch)
tree0a19838c2a1d6b59f976c3138554eb4963bf1903 /lsb-bootscripts/etc/init.d/localnet
parentd7f2eb08dab7e6dd88df0102ec48dce0a301dc5f (diff)
Lots of spelling fixes.
Delete the no longer used lsb-bootscripts directory git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9967 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'lsb-bootscripts/etc/init.d/localnet')
-rw-r--r--lsb-bootscripts/etc/init.d/localnet81
1 files changed, 0 insertions, 81 deletions
diff --git a/lsb-bootscripts/etc/init.d/localnet b/lsb-bootscripts/etc/init.d/localnet
deleted file mode 100644
index cb682e649..000000000
--- a/lsb-bootscripts/etc/init.d/localnet
+++ /dev/null
@@ -1,81 +0,0 @@
-#!/bin/sh
-# Begin $RC_BASE/init.d/localnet
-
-### BEGIN INIT INFO
-# Provides: localnet
-# Required-Start: $local_fs
-# Should-Start:
-# Required-Stop:
-# Should-Stop:
-# Default-Start: S
-# Default-Stop: 0 6
-# Short-Description: Starts the local network.
-# Description: Sets the hostname of the machine and starts the
-# loopback interface.
-# X-LFS-Provided-By: LFS
-### END INIT INFO
-
-. /lib/lsb/init-functions
-
-case "${1}" in
- start)
- ip addr add 127.0.0.1/8 label lo dev lo
- ip link set lo up
- if [ "${?}" -eq "0" ]
- then
- log_success_msg "Bringing up the loopback interface..."
- else
- log_failure_msg "Bringing up the loopback interface..."
- fi
-
- hostname "${HOSTNAME}"
- if [ "${?}" -eq "0" ]
- then
- log_success_msg "Setting hostname to ${HOSTNAME}..."
- else
- log_failure_msg "Setting hostname to ${HOSTNAME}..."
- fi
-
- ;;
-
- stop)
- ip link set lo down
- if [ "${?}" -eq "0" ]
- then
- log_success_msg "Bringing down the loopback interface..."
- else
- log_failure_msg "Bringing down the loopback interface..."
- fi
-
- ;;
-
- restart)
- ip link set lo down
- retval="${?}"
- sleep 1
- ip addr add 127.0.0.1/8 label lo dev lo
- retval=$(( "${retval}" + "${?}" ))
- ip link set lo up
- retval=$(( "${retval}" + "${?}" ))
- hostname "${HOSTNAME}"
- retval=$(( "${retval}" + "${?}" ))
- if [ "${retval}" -eq "0" ]
- then
- log_success_msg "Restarting local network..."
- else
- log_failure_msg "Restarting local network..."
- fi
- ;;
-
- status)
- log_success_msg "Hostname is: ${INFO}$(hostname)${NORMAL}"
- ip link show lo
- ;;
-
- *)
- echo "Usage: ${0} {start|stop|restart|status}"
- exit 1
- ;;
-esac
-
-# End $RC_BASE/init.d/localnet