taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit d3f99366f69ad2fc8ec9e729008bb312debf01d7
parent f4180b490f037424786f08504d521b6e8c43ecaf
Author: MS <ms@taler.net>
Date:   Tue, 15 Nov 2022 14:59:07 +0100

BB master, change restart command.

Diffstat:
Mbuildbot/master.cfg | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -183,7 +183,9 @@ 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=["systemctl", "--user", "restart", "buildbot-master"], + # Command below proved not to work. + # command=["systemctl", "--user", "kill", "--signal", "SIGHUP", "buildbot-master"], workdir="../.." ) )