ansible-roles/kvm-host/tasks/images.yml
Jérémy Lecour 2ed77c60f0 Improve Ansible syntax
replace « x | changed » by « x is changed »
add explicit « bool » filter
use « length » filter instead of string comparison
2021-05-09 23:06:42 +02:00

41 lines
1.3 KiB
YAML

---
- name: Set images path when customized
block:
- name: "Is {{ kvm_custom_libvirt_images_path }} present ?"
stat:
path: "{{ kvm_custom_libvirt_images_path }}"
check_mode: no
register: kvm_custom_libvirt_images_path_test
- name: "read the real datadir"
command: readlink -f /var/lib/libvirt/images
changed_when: False
check_mode: no
register: kvm_libvirt_images_current_real_path_test
when: kvm_custom_libvirt_images_path | length > 0
- name: Images directory is moved to custom path
block:
- name: "Move libvirt images to {{ kvm_custom_libvirt_images_path }}"
command: mv /var/lib/libvirt/images {{ kvm_custom_libvirt_images_path }}
args:
creates: "{{ kvm_custom_libvirt_images_path }}"
- name: Fix owner/group/permissions
file:
path: "{{ kvm_custom_libvirt_images_path }}"
owner: root
group: libvirt
mode: "02775"
- name: "Symlink {{ kvm_custom_libvirt_images_path }} to /var/lib/libvirt/images"
file:
src: "{{ kvm_custom_libvirt_images_path }}"
dest: '/var/lib/libvirt/images'
state: link
when:
- kvm_custom_libvirt_images_path | length > 0
- kvm_custom_libvirt_images_path != kvm_libvirt_images_current_real_path_test.stdout
- not kvm_custom_libvirt_images_path_test.stat.exists