fix: sort flags
This commit is contained in:
parent
4f76ad3afe
commit
8fda63c197
2 changed files with 6 additions and 6 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue