From 3b73ff3ac4b10252e7bc6ea4a6f052a3fc9bc64c Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Mon, 1 May 2023 20:56:54 -0400 Subject: [PATCH] debuginfod: add tags to our tasks for focused ansible runs --- playbooks/groups/debuginfod.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/playbooks/groups/debuginfod.yml b/playbooks/groups/debuginfod.yml index cf3e824e26..a6ebe23c36 100644 --- a/playbooks/groups/debuginfod.yml +++ b/playbooks/groups/debuginfod.yml @@ -30,26 +30,33 @@ - import_tasks: "{{ tasks_path }}/motd.yml" - name: install debuginfod + tag: debuginfod package: name=elfutils-debuginfod state=present - name: install sqlite for diagnostics + tag: debuginfod package: name=sqlite state=present - name: install rsync for data backups + tag: debuginfod package: name=rsync state=present - name: install debuginfod configuration + tag: debuginfod copy: src="{{ files }}/debuginfod/sysconfig.debuginfod" dest=/etc/sysconfig/debuginfod owner=root group=root mode=644 - name: ensure systemd drop-in directory exists + tag: debuginfod file: > dest=/etc/systemd/system/debuginfod.service.d state=directory - name: install debuginfod systemd drop-in + tag: debuginfod copy: src="{{ files }}/debuginfod/debuginfod.service.d" dest=/etc/systemd/system/debuginfod.service.d/override.conf owner=root group=root mode=644 - name: ensure debuginfod is enabled and started + tag: debuginfod service: name: debuginfod state: started