source: bootscripts/contrib/lsb-v3/sbin/ifup@ dc55fb5e

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 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 dc55fb5e was dc55fb5e, checked in by DJ Lucas <dj@…>, 13 years ago

Changes per thread starting at http://archive.linuxfromscratch.org/mail-archives/lfs-dev/2011-May/064677.html

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

  • Property mode set to 100644
File size: 3.3 KB
Line 
1#!/bin/sh
2########################################################################
3# Begin $NETWORK_DEVICES/ifup
4#
5# Description : Interface Up
6#
7# Authors : Nathan Coulson - nathan@linuxfromscratch.org
8# Kevin P. Fleming - kpfleming@linuxfromscratch.org
9#
10# Version : 00.00
11#
12# Notes : the IFCONFIG variable is passed to the scripts found
13# in the services directory, to indicate what file the
14# service should source to get environmental variables.
15#
16########################################################################
17
18. /lib/lsb/init-functions
19
20# Collect a list of configuration files for our interface
21if [ -n "${2}" ]; then
22 for file in ${@#$1} # All parameters except $1
23 do
24 FILES="${FILES} ${NETWORK_DEVICES}/ifconfig.${1}/${file}"
25 done
26elif [ -d "${NETWORK_DEVICES}/ifconfig.${1}" ]; then
27 FILES=`echo ${NETWORK_DEVICES}/ifconfig.${1}/*`
28else
29 FILES="${NETWORK_DEVICES}/ifconfig.${1}"
30fi
31
32message="Bringing up the ${1} interface..."
33
34# Process each configruation file
35for file in ${FILES}; do
36 # skip backup files
37 if [ "${file}" != "${file%""~""}" ]; then
38 continue
39 fi
40
41 if [ ! -f "${file}" ]; then
42 log_warning_msg
43 message="${file} is not a network configuration file or directory."
44 log_warning_msg
45 fi
46
47 (
48 if [ ! -d "${file}" ]; then
49 . ${file}
50 fi
51
52 # Will not process this service if started by boot, and ONBOOT
53 # is not set to yes
54 if [ "${IN_BOOT}" = "1" -a "${ONBOOT}" != "yes" ]; then
55 continue
56 fi
57 # Will not process this service if started by hotplug, and
58 # ONHOTPLUG is not set to yes
59 if [ "${IN_HOTPLUG}" = "1" -a "${ONHOTPLUG}" != "yes" -a "${HOSTNAME}" != "(none)" ]; then
60 continue
61 fi
62
63 if [ -n "${SERVICE}" -a -x "/lib/network-services/${SERVICE}" ]; then
64 if [ -z "${CHECK_LINK}" -o "${CHECK_LINK}" = "y" -o "${CHECK_LINK}" = "yes" -o "${CHECK_LINK}" = "1" ]; then
65 if ip link show ${1} > /dev/null 2>&1; then
66 link_status=`ip link show ${1}`
67 if [ -n "${link_status}" ]; then
68 if ! echo "${link_status}" | grep -q UP; then
69 ip link set ${1} up
70 evaluate_retval standard
71 fi
72 fi
73 else
74 message="${message}Interface ${1} doesn't exist."
75 log_warning_msg
76 fi
77 fi
78 IFCONFIG=${file} /lib/network-services/${SERVICE} ${1} up
79 if [ "${?}" -eq "0" ]; then
80 if [ ! -d "${file}" -a "${file}" != "${NETWORK_DEVICES}/ifconfig.${1}" ]; then
81 mkdir -p "/run/network/ifconfig.${1}"
82 cp "${file}" "/run/network/ifconfig.${1}"
83 elif [ ! -d "${file}" ]; then
84 cp "${file}" "/run/network/"
85 fi
86 fi
87 else
88 echo -e "${FAILURE}Unable to process ${file}. Either"
89 echo -e "${FAILURE}the SERVICE variable was not set,"
90 echo -e "${FAILURE}or the specified service cannot be executed."
91 message=""
92 log_failure_msg
93 fi
94 )
95done
96
97# End $NETWORK_DEVICES/ifup
Note: See TracBrowser for help on using the repository browser.