File: lo-linkup

package info (click to toggle)
ifupdown-scripts-zg2 0.2-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 484 kB
  • ctags: 55
  • sloc: sh: 4,037; makefile: 37
file content (33 lines) | stat: -rwxr-xr-x 753 bytes parent folder | download | duplicates (2)
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
#!/bin/bash
# $Header: /var/local/cvs/debian/ifupdown-scripts-zg2/scripts/ifupdown-scripts-zg2.d/lo-linkup,v 1.1 2004/09/12 18:00:04 mh Exp $

# Environment:
#  IFACE      = Logical interface name
#  MODE       = { start | stop }
#  METHOD     = manual, otherwise exit
#  ADDRFAM    = inet, otherwise exit

. /etc/network/ifupdown-scripts-zg2.d/common-functions

# remove state if interface is being stopped

if [ "$MODE" = "stop" ]; then
  exec_down "mac" ""
  exec_down "dev" ""
  exit 0
fi

# only do something for loopback interfaces

[ "$IF_TYPE" == "loopback" ] || exit 0

# only do something if interface is being started

[ "$MODE" == "start" ] || exit 0

# save state

add_down "dev" "$IF_DEVICE"
cmd "ip link set dev $IF_DEVICE up"

# vi:sw=2