diff --git a/tests/roles/bootstrap-host/tasks/prepare_data_disk.yml b/tests/roles/bootstrap-host/tasks/prepare_data_disk.yml index 10b7ba9330..80e64713e5 100644 --- a/tests/roles/bootstrap-host/tasks/prepare_data_disk.yml +++ b/tests/roles/bootstrap-host/tasks/prepare_data_disk.yml @@ -113,15 +113,15 @@ - data-config - name: Create the ZFS pool - command: zpool create osa-test-pool "/dev/{{ _bootstrap_host_data_disk_device }}2" + command: zpool create pool "/dev/{{ _bootstrap_host_data_disk_device }}2" args: - creates: /osa-test-pool + creates: /pool when: - bootstrap_host_data_disk_device_force | bool - lxc_container_backing_store == 'zfs' - name: Create the ZFS pool/lxc volume - shell: "(zfs list | grep lxc) || zfs create -o mountpoint=/var/lib/lxc osa-test-pool/lxc" + shell: "(zfs list | grep lxc) || zfs create -o mountpoint=/var/lib/lxc pool/lxc" when: - bootstrap_host_data_disk_device_force | bool - lxc_container_backing_store == 'zfs'