summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorJoerg Jaspert <joerg@debian.org>2008-09-28 11:58:28 +0200
committerJoerg Jaspert <joerg@debian.org>2008-09-28 11:58:28 +0200
commit4c21038b7aa33a6fd280e447117915bbccad5301 (patch)
treea8d7f99fa1372c688a3cf9817ca5c544d1beb69f /etc
parentc47172c3f14bdd3c7eba3c10dae46fe04a9caf20 (diff)
Dont use exec in runmirrors.
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Diffstat (limited to 'etc')
-rw-r--r--etc/common2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/common b/etc/common
index 49b9b75..6d06489 100644
--- a/etc/common
+++ b/etc/common
@@ -28,7 +28,7 @@ signal () {
# Finally call ssh
date -u >> ${LOGDIR}/$1.log
- ssh $SSH_OPTIONS -i "$5" -o"user $3" -$4 "$2" sleep 1 >> ${LOGDIR}/$1.log 2>&1 &
+ ssh $SSH_OPTIONS -i "$5" -o"user $3" -$4 "$2" sleep 1 >>${LOGDIR}/$1.log 2>&1 &
}