commit 9e0c4ed1a42155093512a31f75038c12e7b40355
parent df7704a687e781e3db82dce1d3e21a55a3c1628a
Author: Christian Grothoff <christian@grothoff.org>
Date: Wed, 15 Jan 2025 21:46:36 +0100
-fix configs
Diffstat:
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/buildbot/make-buildbot-containerworker.sh b/buildbot/make-buildbot-containerworker.sh
@@ -17,7 +17,7 @@ mkdir -p workspace
if [[ ! -d worker ]];
then
- buildbot-worker create-worker --umask=0o22 ~/worker 127.0.0.1:9988 container-worker container-pass
+ buildbot-worker create-worker --umask=0o22 ~/worker 127.0.0.1:19989 container-worker container-pass
echo $HOSTNAME > worker/info/host
echo "GNUnet.org admins <admin@gnunet.org>" > worker/info/admin
fi
diff --git a/buildbot/make-buildbot-linkchecker.sh b/buildbot/make-buildbot-linkchecker.sh
@@ -22,7 +22,7 @@ fi
if [[ ! -d worker ]];
then
- buildbot-worker create-worker --umask=0o22 ~/worker 127.0.0.1:9988 linkchecker-worker linkchecker-pass
+ buildbot-worker create-worker --umask=0o22 ~/worker 127.0.0.1:19989 linkchecker-worker linkchecker-pass
echo $HOSTNAME > worker/info/host
echo "GNUnet.org admins <admin@gnunet.org>" > worker/info/admin
fi
diff --git a/buildbot/make-buildbot-sitesworker.sh b/buildbot/make-buildbot-sitesworker.sh
@@ -15,7 +15,7 @@ pip install --user --break-system-packages buildbot-worker sphinxcontrib.video
if [[ ! -d worker ]];
then
- buildbot-worker create-worker --umask=0o22 ~/worker 127.0.0.1:9988 sites-worker sites-pass
+ buildbot-worker create-worker --umask=0o22 ~/worker 127.0.0.1:19989 sites-worker sites-pass
echo $HOSTNAME > worker/info/host
echo "GNUnet.org admins <admin@gnunet.org>" > worker/info/admin
fi
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -257,7 +257,7 @@ BUILDMASTER_FACTORY.addStep(
name="restart buildmaster",
description="trigger buildmaster restart with new configuration",
descriptionDone="Buildmaster updated",
- command=["systemctl", "--user", "kill", "--signal", "SIGHUP", "buildbot-master"],
+ command=["killall", "-HUP", "python3"],
workdir="../.."
)
)