diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2016-07-30 03:15:52 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-07-30 15:37:30 -0400 |
commit | d13c865881de1adbbf9e3973a1271fbf1e2e4891 (patch) | |
tree | bfe9ba0d98f318982efd01f952b8e08f561f86d6 /bin/reproducible_lede.sh | |
parent | 52531c464ec98d25613fc54ba82fcb89f499c744 (diff) | |
download | jenkins.debian.net-d13c865881de1adbbf9e3973a1271fbf1e2e4891.tar.xz |
reproducible/openwrt|lede: allow to execute the script itself
To call function on a remote host, allow to call itself on a remote host with
different arguments
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_lede.sh')
-rwxr-xr-x | bin/reproducible_lede.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bin/reproducible_lede.sh b/bin/reproducible_lede.sh index f68b1c0a..05aaa6da 100755 --- a/bin/reproducible_lede.sh +++ b/bin/reproducible_lede.sh @@ -16,6 +16,21 @@ common_init "$@" . /srv/jenkins/bin/reproducible_openwrt_common.sh set -e +# this script is called from positions +# * it's called from the reproducible_wrapper when running on the master +# * it's called from reproducible_opewnrt_common when doing remote builds +case $1 in + slave) + # execute the slave + shift + $@ + exit $? + ;; + master) + # master code following + ;; +esac + # # main # |