summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJames Rayner <james@archlinux.org>2009-06-27 04:11:29 +0200
committerJames Rayner <james@archlinux.org>2009-06-27 04:11:29 +0200
commit90fb9a3aa4eb5f6395f18a851361a47780eae69d (patch)
tree64c6b54bd335fb967da899847367201cb57b4a45 /src
parent78e88423764ae1babcfeb6fb3a239345eaea7588 (diff)
downloadnetctl-90fb9a3aa4eb5f6395f18a851361a47780eae69d.tar.gz
netctl-90fb9a3aa4eb5f6395f18a851361a47780eae69d.tar.xz
fix taking all profiles down
Diffstat (limited to 'src')
-rw-r--r--src/network2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network b/src/network
index e7ebdd6..b45caaa 100644
--- a/src/network
+++ b/src/network
@@ -51,7 +51,7 @@ validate_profile()
#
all_down()
{
- for prof in "$(find ${STATE_DIR}/profiles/ -maxdepth 1 -type f -printf '%f\n')"; do
+ for prof in $(find ${STATE_DIR}/profiles/ -maxdepth 1 -type f -printf '%f\n'); do
profile_down $prof
done
}