From dbd73b9bde0bb6f02412a48bb98a7654cbbb05d3 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 3 Mar 2016 15:42:54 -0800 Subject: [PATCH] check-compose: update to new fedmsg daemon-y check-compose --- roles/check-compose/tasks/main.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/roles/check-compose/tasks/main.yml b/roles/check-compose/tasks/main.yml index 37edba83f1..03d4d7a6fc 100644 --- a/roles/check-compose/tasks/main.yml +++ b/roles/check-compose/tasks/main.yml @@ -60,6 +60,14 @@ dest: /root/fedora-qa register: gitqa +# TEMPORARY cleanup of old systemd units/timers +- name: Disable and stop old systemd timers + service: name=check-compose-{{ item }}.timer enabled=no state=stopped + with_items: + - branched + - postrelease + - rawhide + - name: Build check-compose command: "make prefix=/usr" args: @@ -81,9 +89,5 @@ tags: - config -- name: Enable and start timers - service: name=check-compose-{{ item }}.timer enabled=yes state=started - with_items: - - branched - - rawhide - - postrelease +- name: Enable and start daemon + service: name=check-compose.service enabled=yes state=started