aboutsummaryrefslogtreecommitdiff
path: root/netcfg
diff options
context:
space:
mode:
authorJudd Vinet <judd@archlinux.org>2005-07-01 02:54:50 +0000
committerJudd Vinet <judd@archlinux.org>2005-07-01 02:54:50 +0000
commit0fa1f0eeb3422ba0e84a346a20437172f26859da (patch)
tree315451e2f8b84e671d9f5988abfd87f1c53917ba /netcfg
parenta440a006d7dc42ad072b13986f1f737e8f7e1719 (diff)
downloadinitscripts-0fa1f0eeb3422ba0e84a346a20437172f26859da.tar.xz
fixed a --stopall bug in netcfg
Diffstat (limited to 'netcfg')
-rwxr-xr-xnetcfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/netcfg b/netcfg
index d9166f9..2136365 100755
--- a/netcfg
+++ b/netcfg
@@ -58,7 +58,7 @@ stop_all()
[ -d $STATE_DIR ] || return
for prof in `ls $STATE_DIR`; do
unset INTERFACE
- . $prof
+ . $STATE_DIR/$prof
stop_profile $INTERFACE
done
}