File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 218
218
command : findmnt -r -o SOURCE -n /
219
219
register : result_root_mount_point
220
220
221
+ # overlay: as default
222
+ # none: workaround issue https://gitlab.com/redhat/centos-stream/containers/bootc/-/issues/301
223
+ # composefs: issue has been fixed by https://github.com/containers/composefs/pull/303
221
224
- name : / mount point checking
222
225
block :
223
226
- assert :
224
227
that :
225
- - result_root_mount_point.stdout == "overlay"
226
- fail_msg : " / does not mount with overlay"
227
- success_msg : " / mounts with overlay"
228
+ - result_root_mount_point.stdout == "overlay" or result_root_mount_point.stdout == "none" or result_root_mount_point.stdout == "composefs"
229
+ fail_msg : " / does not mount with overlay or none or composefs "
230
+ success_msg : " / mounts with overlay or none or composefs "
228
231
always :
229
232
- set_fact :
230
233
total_counter : " {{ total_counter | int + 1 }}"
You can’t perform that action at this time.
0 commit comments