12 lines
411 B
YAML
12 lines
411 B
YAML
---
|
|
- name: archinstall | Re-create post-installation snapshot of zroot/ROOT/arch
|
|
community.general.zfs:
|
|
name: zroot/ROOT/arch@post-installation
|
|
state: "{{ item }}"
|
|
with_items: [absent, present]
|
|
|
|
- name: archinstall | Re-create post-installation snapshot of zroot/DATA/home
|
|
community.general.zfs:
|
|
name: zroot/DATA/home@post-installation
|
|
state: "{{ item }}"
|
|
with_items: [absent, present]
|