Skip to content

Commit

Permalink
Comment out accounts tag from clamav.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pyllyukko committed Dec 17, 2024
1 parent 53cbc44 commit 86f7fce
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tasks/clamav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 86f7fce

Please sign in to comment.