diff options
author | Bryan Newbold <bnewbold@archive.org> | 2022-06-22 20:57:51 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2022-06-22 21:00:08 -0700 |
commit | 5d201f7d9b55ff50753da2456634a3e51462ba1f (patch) | |
tree | 073a983bb2162b71af6270bb9d454d0341bf7272 /roles/znc | |
parent | b64c159c3df815c361a19884d63ceba59b709990 (diff) | |
download | infra-5d201f7d9b55ff50753da2456634a3e51462ba1f.tar.gz infra-5d201f7d9b55ff50753da2456634a3e51462ba1f.zip |
refactor 'apt' tasks to newer syntax (not 'with_items')
Diffstat (limited to 'roles/znc')
-rw-r--r-- | roles/znc/tasks/znc.yml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/roles/znc/tasks/znc.yml b/roles/znc/tasks/znc.yml index ecb6103..a320041 100644 --- a/roles/znc/tasks/znc.yml +++ b/roles/znc/tasks/znc.yml @@ -2,15 +2,11 @@ - name: Install znc (jessie-backports) when: (ansible_distribution == "Debian" and ansible_distribution_major_version == "8") - apt: pkg={{ item }} state=installed repo=jessie-backports - with_items: - - znc + apt: name=znc state=present repo=jessie-backports - name: Install znc (non-jessie) when: not (ansible_distribution == "Debian" and ansible_distribution_major_version == "8") - apt: pkg={{ item }} state=installed - with_items: - - znc + apt: name=znc state=present - name: Create znc group group: name=znc state=present |