From 86f7fcea4687ccc7ba26ade252c07ad589e6f822 Mon Sep 17 00:00:00 2001 From: pyllyukko Date: Tue, 17 Dec 2024 23:12:55 +0200 Subject: [PATCH] Comment out accounts tag from clamav.yml --- tasks/clamav.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tasks/clamav.yml b/tasks/clamav.yml index 1df6fcff..603e5537 100644 --- a/tasks/clamav.yml +++ b/tasks/clamav.yml @@ -25,15 +25,18 @@ state: absent tags: - services - - accounts # postrm removed the ClamAV user + # This is commented out so that accounts tag can be run on it's own + #- accounts # postrm removed the ClamAV user - name: Create group for ClamAV - tags: accounts + # This is commented out so that accounts tag can be run on it's own + #tags: accounts ansible.builtin.group: name: clamav state: present system: true - name: Create user account for ClamAV - tags: accounts + # This is commented out so that accounts tag can be run on it's own + #tags: accounts ansible.builtin.user: name: clamav group: clamav