fix: sort flags

This commit is contained in:
Simon Cornet 2026-03-21 15:26:42 +01:00
commit 8fda63c197
2 changed files with 6 additions and 6 deletions

View file

@ -9,12 +9,12 @@
ansible.builtin.shell:
cmd: "ceph osd set {{ item }}"
loop:
- "norecover"
- "norebalance"
- "nobackfill"
- "noscrub"
- "nodeep-scrub"
- "noout"
- "norebalance"
- "norecover"
- "noscrub"
register: "ceph_flag_result"
changed_when: false
failed_when: "ceph_flag_result.rc != 0"

View file

@ -9,12 +9,12 @@
ansible.builtin.shell:
cmd: "ceph osd unset {{ item }}"
loop:
- "norecover"
- "norebalance"
- "nobackfill"
- "noscrub"
- "nodeep-scrub"
- "noout"
- "norebalance"
- "norecover"
- "noscrub"
register: "ceph_flag_result"
changed_when: false
failed_when: "ceph_flag_result.rc != 0"