From 4eeed3bcbedcb8c1dbaa6912df99f37ab51a7af2 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 19 Mar 2019 22:46:10 +0000 Subject: [PATCH] update-fullfiletimelist: make new-updates-sync use the fedora-secondary lock file Currently update-fullfiletimelist is called from 4 machines: * rawhide-composer: after rawhide compose * branched-composer: after branched compose * secondary01: in a cron every hour updating only /pub/alt as it can change anytime. * bodhi-backend01: after ever updates sync that has content synced We need bodhi-backend01 to use the same lock as rawhide/branched composers since they update the same modules and we don't want them to step on each other. Signed-off-by: Kevin Fenzi --- roles/bodhi2/backend/files/new-updates-sync | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/bodhi2/backend/files/new-updates-sync b/roles/bodhi2/backend/files/new-updates-sync index 0fa893b72f..7d6e4569b9 100755 --- a/roles/bodhi2/backend/files/new-updates-sync +++ b/roles/bodhi2/backend/files/new-updates-sync @@ -234,7 +234,7 @@ def update_fullfilelist(modules): logger.info('No filelists to update') return cmd = ['/usr/local/bin/update-fullfiletimelist', '-l', - '/tmp/update-fullfiletimelist.lock', '-t', '/pub'] + '/pub/fedora-secondary/update-fullfiletimelist.lock', '-t', '/pub'] cmd.extend(modules) run_command(cmd)