blob: d0b6f7ccbe02cad9478c9ecff026ffeff4c1d7bc (
plain)
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
90
91
92
93
94
95
96
97
|
#!/bin/bash
#
# This script implements support for the NETWORKS array in /etc/conf.d/netcfg.
. /usr/lib/network/globals
. /etc/conf.d/netcfg
STATE_FILE="$STATE_DIR/netcfg-daemon"
LAST_STATE="/var/lib/netcfg/netcfg.state"
case "$1" in
start)
(( $(id -u) )) && exit_stderr "This script should be run as root."
[[ -e $STATE_FILE ]] && exit_err "netcfg-daemon is already started"
[[ ${NETWORKS+x} != x ]] && exit_err "NETWORKS is not set in /etc/conf.d/netcfg"
if [[ ${#NETWORKS[@]} -eq 1 ]]; then
case $NETWORKS in
last)
[[ -e $LAST_STATE ]] || exit_err "No recorded netcfg state to restore"
# The order in LAST_STATE is meaningless so we can just as
# well start the profiles in the background.
while read profile; do
if /usr/bin/netcfg up "$profile"; then
echo "$profile" >> "$STATE_FILE"
fi &
done < "$LAST_STATE"
wait
exit $? ;;
menu)
/usr/bin/netcfg-menu ${NETWORKS_MENU_TIMEOUT-5} && \
mv "$STATE_DIR/menu" "$STATE_FILE"
exit $? ;;
esac
fi
for profile in "${NETWORKS[@]}"; do
if [[ "$profile" = "${profile#@}" ]]; then
if /usr/bin/netcfg check-iface "$profile"; then
echo "$profile" >> "$STATE_FILE"
fi
else
# It is up to the user to make sure no backgrounded profile
# uses an interface that is used by another active profile.
if /usr/bin/netcfg up "${profile#@}"; then
echo "$profile" >> "$STATE_FILE"
fi >/dev/null &
PROFILE_BKGD=1
fi
done
# Generate a return value.
[[ -f $STATE_FILE || -n $PROFILE_BKGD ]]
;;
stop)
(( $(id -u) )) && exit_stderr "This script should be run as root."
if [[ ${#NETWORKS[@]} -eq 1 && $NETWORKS = last ]]; then
mkdir -p "$(dirname "$LAST_STATE")"
/usr/bin/netcfg current > "$LAST_STATE"
/usr/bin/netcfg all-down
exit $?
fi
[[ ! -e $STATE_FILE ]] && exit_err "netcfg-daemon was not started"
# Stop the profiles in the reverse order they were started.
tac "$STATE_FILE" | (
while read profile; do
if [[ -e "$STATE_DIR/profiles/${profile#@}" ]]; then
if [[ "$profile" = "${profile#@}" ]]; then
/usr/bin/netcfg down "$profile" || exit $?
else
/usr/bin/netcfg down "${profile#@}" &
fi
fi
done
rm "$STATE_FILE"
# Generate a return value and make sure we are good to restart.
wait
)
;;
restart)
"$0" stop
sleep 1
"$0" start
;;
status)
if [[ -e $STATE_FILE ]]; then
report_notice "profiles started by netcfg-daemon:"
sed 's/^@//' "$STATE_FILE"
else
report_notice "netcfg-daemon was not started"
fi
;;
*)
echo "Usage: $0 {start|stop|restart|status}"
esac
|