Statistics
| Branch: | Tag: | Revision:

root / snf-network-unconfigure-interfaces @ 2e8a73e0

History | View | Annotate | Download (179 Bytes)

1
#!/bin/bash
2

    
3
DEFAULT=/etc/default/snf-network
4

    
5
source $DEFAULT
6
source $CONF
7

    
8
INTERFACES=$STATE_DIR/interfaces
9

    
10
if [ -e "$INTERFACES" ]; then
11
  ifdown -i $INTERFACES -a --force
12
fi