summaryrefslogtreecommitdiffstats
path: root/hosts/alioth/home/groups/reproducible/reschedule.sh
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/alioth/home/groups/reproducible/reschedule.sh')
-rwxr-xr-xhosts/alioth/home/groups/reproducible/reschedule.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/hosts/alioth/home/groups/reproducible/reschedule.sh b/hosts/alioth/home/groups/reproducible/reschedule.sh
new file mode 100755
index 00000000..ee6b9c1f
--- /dev/null
+++ b/hosts/alioth/home/groups/reproducible/reschedule.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+SSH_KEY="/home/groups/reproducible/private/jenkins-key"
+SSH_KNOWN_HOSTS="/home/groups/reproducible/private/ssh_known_hosts"
+
+# "dummy" is discarded by the server ssh (jenkins.debian.net in this case) and
+# it's there because otherwise the client ssh (this) tries to parse the options
+# for the remote command
+LC_USER="$USER" ssh -i "$SSH_KEY" -o GlobalKnownHostsFile="$SSH_KNOWN_HOSTS" jenkins@jenkins.debian.net dummy "$@"