index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2019-11-23 20:28:20 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2019-11-23 20:28:20 +0100 |
commit | 5352cdfeb125faa884a5ea63c401c6db49f3e887 (patch) | |
tree | 990117044960b7752c2c47798ab3e40cfd3065c1 /bin/build-packages | |
parent | 3f232a376754faff6413e2ec22a9e89d06121763 (diff) |
-rwxr-xr-x | bin/build-packages | 15 |
diff --git a/bin/build-packages b/bin/build-packages index e33faaa..be6bf16 100755 --- a/bin/build-packages +++ b/bin/build-packages @@ -65,8 +65,6 @@ usage() { >&2 echo ' Cannot be combined with -l.' >&2 echo ' -x: If package build fails, do not request new assignment(s).' >&2 echo ' Cannot be combined with -l.' - >&2 echo ' -S|--stop:' - >&2 echo ' Stop the slave gracefully (touching the stop switch file).' >&2 echo '' >&2 echo 'known straws (separated by and enclosed in ":", sets of straws separated by " "):' >&2 echo ' :clean_chroot:' @@ -89,14 +87,13 @@ usage() { } eval set -- "$( - getopt -o d:hl:n:p:s:t:uxS \ + getopt -o d:hl:n:p:s:t:ux \ --long diff: \ --long help \ --long local: \ --long prefer: \ --long straw: \ --long upload \ - --long stop \ -n "$(basename "$0")" -- "$@" || \ echo usage )" @@ -107,7 +104,6 @@ unset forced_package unset forced_straws unset prefered_package exit_after_failure=false -stop_slave=false timeout=0 while true @@ -150,9 +146,6 @@ do shift forced_straws="${forced_straws} $1" ;; - -S|--stop) - stop_slave=true - ;; -t) shift timeout="$1" @@ -177,12 +170,6 @@ if [ $# -ne 0 ]; then usage fi -if ${stop_slave}; then - SLAVE=$(whoami) - touch "/tmp/do-not-run-build-slave.$SLAVE" - exit 0 -fi - if [ -n "${diff_source_dir}" ]; then if [ -n "${count}" ] || \ [ -n "${forced_package}" ] || \ |