initial version of scripts, config and debian package
[moebian] / install / etc / network / if-post-down.d / zz_static_ip_if_down
1 #!/bin/sh
2
3 # Copyright (C) 2009 Nokia Corporation. All rights reserved.
4 # A workaround to take down interface when it's configured with a static IP (NB#138487).
5
6 set -e
7
8 if [ "$MODE" != stop ]; then
9     exit 0
10 fi
11
12 if [ "$ICD_CONNECTION_TYPE" != WLAN_INFRA -a "$ICD_CONNECTION_TYPE" != WLAN_ADHOC ]; then
13     exit 0
14 fi
15
16 ifconfig $IFACE down
17
18 exit 0