summaryrefslogtreecommitdiffstats
path: root/alioth-scripts/reproducible-reschedule.sh
blob: ee6b9c1fc45484b7e17926315a12022280a4679e (plain)
1
2
3
4
5
6
7
8
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 "$@"