linting fixes

This commit is contained in:
Bastian de Byl
2022-05-02 17:26:53 -04:00
parent 95690c0eb1
commit f7141f53d5
8 changed files with 19 additions and 11 deletions

View File

@@ -76,7 +76,8 @@
- "{{ podman_volumes }}"
tags: podman
- meta: flush_handlers
- name: flush handlers
ansible.builtin.meta: flush_handlers
tags: podman
- name: create podman shared network
@@ -98,7 +99,8 @@
- name: fetch subuid of {{ podman_user }}
become: true
changed_when: false
ansible.builtin.shell: |
cat /etc/subuid | awk -F':' '/{{ podman_user }}/{ print $2 }' | head -n 1
set -o pipefail && cat /etc/subuid | awk -F':' '/{{ podman_user }}/{ print $2 }' | head -n 1
register: podman_subuid
tags: always