From c1a07029375131d3a3e47e0d645884c2283962bd Mon Sep 17 00:00:00 2001 From: Stephen Smoogen Date: Tue, 4 Jun 2019 12:56:15 +0000 Subject: [PATCH] put in tags to make this go faster --- roles/releng/tasks/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/roles/releng/tasks/main.yml b/roles/releng/tasks/main.yml index f2aef45263..c710148a89 100644 --- a/roles/releng/tasks/main.yml +++ b/roles/releng/tasks/main.yml @@ -28,21 +28,31 @@ - name: add ftbfs group group: name=ftbfs gid=264 system=yes state=present when: inventory_hostname.startswith('compose-x86-01') + tags: + - ftbfs - name: add ftbfs user user: name=ftbfs uid=264 group=ftbfs createhome=yes system=yes state=present when: inventory_hostname.startswith('compose-x86-01') + tags: + - ftbfs - name: add ftbfs script config file template: src=ftbfs.cfg.j2 def=/etc/ when: inventory_hostname.startswith('compose-x86-01') + tags: + - ftbfs - name: add ftbfs cache dir file: state=directory path=/home/ftbfs/.cache mode=2775 owner=ftbfs group=ftbfs when: inventory_hostname.startswith('compose-x86-01') + tags: + - ftbfs - name: add ftbfs weekly cron job copy: src="ftbfs.cron" dest=/etc/cron.weekly/ mode=755 + tags: + - ftbfs # masher user 751 - name: add masher group