summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2011-07-11 09:58:43 +0200
committerFlorian Pritz <bluewind@xinu.at>2011-07-11 09:58:43 +0200
commit6f764ff5676146206a77e62d27aa8ba469a11225 (patch)
treec0e6e0145b6b3fea6ad1666e0b02eaffe9bbe8fa
parent89de8ec818faba8b71b7b5163960698504bb0950 (diff)
downloadbootrun-6f764ff5676146206a77e62d27aa8ba469a11225.tar.gz
bootrun-6f764ff5676146206a77e62d27aa8ba469a11225.tar.xz
add missing &
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r--bootrun2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootrun b/bootrun
index 4f49a3c..fefc47b 100644
--- a/bootrun
+++ b/bootrun
@@ -32,7 +32,7 @@ start() {
user="$(cut -d: -f1 <<< "$line")"
file="$(cut -d: -f2 <<< "$line")/.bootrun"
if [ -x "$file" ]; then
- start_run "$file" "$user" &>> /var/log/bootrun.log
+ start_run "$file" "$user" &>> /var/log/bootrun.log &
fi
done
}