Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/bin/build-packages
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2019-11-23 20:28:20 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2019-11-23 20:28:20 +0100
commit5352cdfeb125faa884a5ea63c401c6db49f3e887 (patch)
tree990117044960b7752c2c47798ab3e40cfd3065c1 /bin/build-packages
parent3f232a376754faff6413e2ec22a9e89d06121763 (diff)
removed all systemd tests
Diffstat (limited to 'bin/build-packages')
-rwxr-xr-xbin/build-packages15
1 files changed, 1 insertions, 14 deletions
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}" ] || \