summaryrefslogtreecommitdiffstats
path: root/src-wireless/net-auto
blob: 5f972c384e2d3751d55309a1660cb8f43c162765 (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
#!/bin/bash

. /usr/lib/network/globals

case "$1" in
    start)
        if ! ck_daemon net-auto; then           # JP: check if it's already running
            exit_stderr "net-auto has already been started: try \"/etc/rc.d/net-auto restart\""
        fi
        # Ensure any device renaming has occurred as intended
        for daemon in "${DAEMONS[@]}"; do
            if [[ "$daemon" = "net-rename" ]]; then
                if ck_daemon net-rename; then
                    /etc/rc.d/net-rename start
                fi
          fi
        done

        # TODO: check if any way of using 'stacks' in bash
        rm -f "$STATE_DIR/net-auto"
        for iface in "${AUTO_NETWORKS[@]}"; do
            if [[ "${iface:0:4}" = "auto" ]]; then
                auto="$iface"
            elif [[ -n "$auto" ]]; then
                if /usr/bin/netcfg-"$auto" "$iface"; then
                    echo "$iface" >> "$STATE_DIR/net-auto"
                    add_daemon net-auto             # JP: was this forgotten?
                fi
                unset auto
            fi
        done
        ;;
    stop)
        if ck_daemon net-auto; then
            exit_stderr "net-auto not running"
        fi

        while read iface; do
            /usr/bin/netcfg2 iface-down "$iface"
        done < "$STATE_DIR/net-auto"
        rm -f "$STATE_DIR/net-auto"
        rm_daemon net-auto
        ;;
    restart)
        "$0" stop; sleep 1; "$0" start
        ;;
    *)
        exit_stderr "Usage: $0 {start|stop|restart}"
esac

# vim: ft=sh ts=4 et sw=4: