More ansible-lint fixes
This commit is contained in:
parent
82a43f8921
commit
40a4b9b1fd
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue