More ansible-lint fixes

This commit is contained in:
Timo Makinen 2023-07-21 09:53:32 +00:00
parent 82a43f8921
commit 40a4b9b1fd

View file

@ -1,7 +1,10 @@
---
- name: Check paper size
ansible.builtin.shell:
cmd: localectl status | grep -E '^\s+LC_PAPER=fi_FI.UTF-8$'
cmd: |
set -o pipefail
localectl status | grep -E '^\s+LC_PAPER=fi_FI.UTF-8$'
executable: /bin/bash
register: locale_check
changed_when: false
failed_when: false