summaryrefslogtreecommitdiffstats
path: root/molecule/raspberrypi/prepare.yml
diff options
context:
space:
mode:
authorAhmed AbdelHalim <[email protected]>2026-06-24 02:43:38 +0200
committerAhmed AbdelHalim <[email protected]>2026-06-24 02:43:38 +0200
commit29db09565f6c76268cf43608ae47f366e6e8a4e0 (patch)
tree9a85578f6a2ee905618b13af2629eb0376247c57 /molecule/raspberrypi/prepare.yml
parent6903124e1fd0dfebfab2b8a17f8c910584260507 (diff)
Test backup role using tmpfs instead of mounted loop device
Co-authored-by: Claude.ai
Diffstat (limited to 'molecule/raspberrypi/prepare.yml')
-rw-r--r--molecule/raspberrypi/prepare.yml28
1 files changed, 0 insertions, 28 deletions
diff --git a/molecule/raspberrypi/prepare.yml b/molecule/raspberrypi/prepare.yml
deleted file mode 100644
index 0d88f9d7..00000000
--- a/molecule/raspberrypi/prepare.yml
+++ /dev/null
@@ -1,28 +0,0 @@
----
-- name: Prepare
- hosts: localhost
- gather_facts: true
- tasks:
- - name: "Create virtual disk image"
- become: true
- community.general.filesize:
- path: "/opt/vdd.img"
- size: 12G
- mode: "0755"
-
- - name: "Create test_device (loop block device)"
- become: true
- ansible.builtin.command:
- cmd: "losetup --show -Pf /opt/vdd.img"
- register: loop_device
- changed_when: true
-
- - name: "Format test device as ext4"
- become: true
- community.general.filesystem:
- fstype: "ext4"
- dev: "{{ loop_device.stdout }}"
-
- - name: "Show test info"
- ansible.builtin.debug:
- msg: "Test device: {{ loop_device.stdout }}"