hc
2024-10-12 a5969cabbb4660eab42b6ef0412cbbd1200cf14d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/bin/sh -e
### BEGIN INIT INFO
# Provides:          networking
# Required-Start:    mountvirtfs $local_fs
# Required-Stop:     $local_fs
# Should-Start:      ifupdown
# Should-Stop:       ifupdown
# Default-Start:     S
# Default-Stop:      0 6
# Short-Description: Raise network interfaces.
### END INIT INFO
 
PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin"
 
[ -x /sbin/ifup ] || exit 0
 
check_network_file_systems() {
    [ -e /proc/mounts ] || return 0
 
    if [ -e /etc/iscsi/iscsi.initramfs ]; then
   echo "not deconfiguring network interfaces: iSCSI root is mounted."
   exit 0
    fi
 
    exec 9<&0 < /proc/mounts
    while read DEV MTPT FSTYPE REST; do
   case $DEV in
   /dev/nbd*|/dev/nd[a-z]*|/dev/etherd/e*)
       echo "not deconfiguring network interfaces: network devices still mounted."
       exit 0
       ;;
   esac
   case $FSTYPE in
   nfs|nfs4|smbfs|ncp|ncpfs|cifs|coda|ocfs2|gfs|pvfs|pvfs2|fuse.httpfs|fuse.curlftpfs)
       echo "not deconfiguring network interfaces: network file systems still mounted."
       exit 0
       ;;
   esac
    done
    exec 0<&9 9<&-
}
 
check_network_swap() {
    [ -e /proc/swaps ] || return 0
 
    exec 9<&0 < /proc/swaps
    while read DEV MTPT FSTYPE REST; do
   case $DEV in
   /dev/nbd*|/dev/nd[a-z]*|/dev/etherd/e*)
       echo "not deconfiguring network interfaces: network swap still mounted."
       exit 0
       ;;
   esac
    done
    exec 0<&9 9<&-
}
 
case "$1" in
start)
   echo -n "Configuring network interfaces... "
   sysctl -e -p /etc/sysctl.conf >/dev/null 2>&1
   ifup -a
   echo "done."
   ;;
 
stop)
   check_network_file_systems
   check_network_swap
 
   echo -n "Deconfiguring network interfaces... "
   ifdown -a
   echo "done."
   ;;
 
force-reload|restart)
   echo "Running $0 $1 is deprecated because it may not enable again some interfaces"
   echo "Reconfiguring network interfaces... "
   ifdown -a || true
   ifup -a
   echo "done."
   ;;
 
*)
   echo "Usage: /etc/init.d/networking {start|stop}"
   exit 1
   ;;
esac
 
exit 0