diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2022-10-22 16:41:45 +0200 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2022-10-22 16:41:45 +0200 |
commit | 0df015e9b5c4aefd4245c94ee98021d2af80ed99 (patch) | |
tree | d9dbf4259500857daf41b627dbc2d116ba92dbc1 /roles/workstation/tasks/libvirt.yml | |
parent | 1cd2d31e0d5f81ce066121de78c0ed042fc3b6aa (diff) | |
download | rules-0df015e9b5c4aefd4245c94ee98021d2af80ed99.tar.gz |
lint: pass ansible-lint + yamllint
Diffstat (limited to 'roles/workstation/tasks/libvirt.yml')
-rw-r--r-- | roles/workstation/tasks/libvirt.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/workstation/tasks/libvirt.yml b/roles/workstation/tasks/libvirt.yml index ef9e85b..554f800 100644 --- a/roles/workstation/tasks/libvirt.yml +++ b/roles/workstation/tasks/libvirt.yml @@ -1,9 +1,9 @@ - name: install iptables-nft - shell: yes | pacman --noprogressbar --needed --sync iptables-nft + ansible.builtin.shell: yes | pacman --noprogressbar --needed --sync iptables-nft when: ansible_distribution == "Archlinux" - name: install libvirt - package: + ansible.builtin.package: name: - cdrtools - dnsmasq @@ -12,7 +12,7 @@ state: present - name: append current user to virt groups - user: + ansible.builtin.user: name: "{{ workstation_user }}" groups: "{{ item }}" append: true |