We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 613e725 commit 6ff2ce2Copy full SHA for 6ff2ce2
1 file changed
tasks/disk/main.yml
@@ -1,4 +1,9 @@
1
---
2
+- name: Skip disk if in pipeline
3
+ ansible.builtin.meta: end_play
4
+ when:
5
+ - in_pipeline | bool
6
+
7
- name: Detect candidate block devices
8
ansible.builtin.set_fact:
9
candidate_disks: >-
@@ -42,8 +47,7 @@
42
47
- name: Skip disk partitioning
43
48
ansible.builtin.meta: end_play
44
49
when:
45
- - in_pipeline | bool
46
- or single_root_disk
50
+ - single_root_disk
51
52
- name: Ensure all packages are up to date
53
become: true
0 commit comments