diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_lede.sh | 10 | ||||
-rwxr-xr-x | bin/reproducible_openwrt.sh | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/bin/reproducible_lede.sh b/bin/reproducible_lede.sh index b184f550..77ea110a 100755 --- a/bin/reproducible_lede.sh +++ b/bin/reproducible_lede.sh @@ -22,6 +22,16 @@ set -e case $1 in node) shift + case $1 in + openwrt_build |\ + openwrt_get_banner |\ + openwrt_mktempdir |\ + openwrt_cleanup_tmpdirs) ;; # this is the allowed list + *) + echo "Unsupported remote node function $@" + exit 1 + ;; + esac $@ exit $? ;; diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh index 0d1c740a..b1da7060 100755 --- a/bin/reproducible_openwrt.sh +++ b/bin/reproducible_openwrt.sh @@ -22,6 +22,16 @@ set -e case $1 in node) shift + case $1 in + openwrt_build |\ + openwrt_get_banner |\ + openwrt_mktempdir |\ + openwrt_cleanup_tmpdirs) ;; # this is the allowed list + *) + echo "Unsupported remote node function $@" + exit 1 + ;; + esac $@ exit $? ;; |