diff options
author | James Rayner <james@archlinux.org> | 2009-06-27 04:11:29 +0200 |
---|---|---|
committer | James Rayner <james@archlinux.org> | 2009-06-27 04:11:29 +0200 |
commit | 90fb9a3aa4eb5f6395f18a851361a47780eae69d (patch) | |
tree | 64c6b54bd335fb967da899847367201cb57b4a45 /src/network | |
parent | 78e88423764ae1babcfeb6fb3a239345eaea7588 (diff) | |
download | netctl-90fb9a3aa4eb5f6395f18a851361a47780eae69d.tar.gz netctl-90fb9a3aa4eb5f6395f18a851361a47780eae69d.tar.xz |
fix taking all profiles down
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network | 2 |
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 } |