source: bootscripts/contrib/lsb-v3/etc/init.d/network@ cb95d5f

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

Changed distribution directory structure.

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

  • Property mode set to 100644
File size: 1.4 KB
Line 
1#!/bin/sh
2# Begin /etc/init.d/network
3
4### BEGIN INIT INFO
5# Provides: $network
6# Required-Start: $local_fs swap localnet
7# Should-Start: $syslog
8# Required-Stop: $local_fs swap localnet
9# Should-Stop: $syslog
10# Default-Start: 3 4 5
11# Default-Stop: 0 1 2 6
12# Short-Description: Starts and configures network interfaces.
13# Description: Starts and configures network interfaces.
14# X-LFS-Provided-By: LFS
15### END INIT INFO
16
17. /lib/lsb/init-functions
18. /etc/sysconfig/network
19
20case "${1}" in
21 start)
22 # Start all network interfaces
23 for file in ${NETWORK_DEVICES}/ifconfig.*
24 do
25 interface=${file##*/ifconfig.}
26
27 # skip if $file is * (because nothing was found)
28 if [ "${interface}" = "*" ]
29 then
30 continue
31 fi
32 IN_BOOT=1 ${NETWORK_DEVICES}/ifup ${interface}
33 done
34 ;;
35
36 stop)
37 # Reverse list
38 FILES=""
39 for file in ${NETWORK_DEVICES}/ifconfig.*
40 do
41 FILES="${file} ${FILES}"
42 done
43
44 # Stop all network interfaces
45 for file in ${FILES}
46 do
47 interface=${file##*/ifconfig.}
48
49 # skip if $file is * (because nothing was found)
50 if [ "${interface}" = "*" ]
51 then
52 continue
53 fi
54
55 IN_BOOT=1 ${NETWORK_DEVICES}/ifdown ${interface}
56 done
57 ;;
58
59 restart)
60 ${0} stop
61 sleep 1
62 ${0} start
63 ;;
64
65 *)
66 echo "Usage: ${0} {start|stop|restart}"
67 exit 1
68 ;;
69esac
70
71# End /etc/init.d/network
Note: See TracBrowser for help on using the repository browser.