fix ansible-lint errors

This commit is contained in:
Sergey Malyuk
2025-12-24 11:47:56 +03:00
parent 94ad238720
commit cd78304e18
4 changed files with 22 additions and 22 deletions

View File

@@ -8,6 +8,6 @@
tasks:
- name: Check XFS project quotas on /mnt
ansible.builtin.command: xfs_quota -x -c 'report -p' /mnt
register: quota_output
register: xfs_project_quotas_quota_output
changed_when: false
failed_when: "'Project quota on /mnt' not in quota_output.stdout"
failed_when: "'Project quota on /mnt' not in xfs_project_quotas_quota_output.stdout"