From 15154169cfa32be5198f1b2c6e6fff6fe9b99f42 Mon Sep 17 00:00:00 2001 From: Ludovic Poujol Date: Fri, 30 Oct 2020 11:56:24 +0100 Subject: [PATCH] kvm-host: Add drbd role dependency (toggleable with kvm_install_drbd) --- CHANGELOG.md | 1 + kvm-host/defaults/main.yml | 1 + kvm-host/meta/main.yml | 8 ++++---- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c309ba50..1130398e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ The **patch** part changes incrementally at each release. ### Added * dovecot: Update munin plugin & configure it +* kvm-host: Add drbd role dependency (toggleable with kvm_install_drbd) * nextcloud: New role to setup a nextcloud instance * redis: variable to force use of port 6379 in instances mode * lxc-php: Allow php containers to contact local MySQL with localhost diff --git a/kvm-host/defaults/main.yml b/kvm-host/defaults/main.yml index 4c77a2ff..bb97c0f9 100644 --- a/kvm-host/defaults/main.yml +++ b/kvm-host/defaults/main.yml @@ -1,2 +1,3 @@ --- kvm_custom_libvirt_images_path: '' +kvm_install_drbd: True diff --git a/kvm-host/meta/main.yml b/kvm-host/meta/main.yml index 1d6d1c36..0976cf88 100644 --- a/kvm-host/meta/main.yml +++ b/kvm-host/meta/main.yml @@ -12,8 +12,8 @@ galaxy_info: - name: Debian versions: - jessie + - stretch + - buster -dependencies: [] - # List your role dependencies here, one per line. - # Be sure to remove the '[]' above if you add dependencies - # to this list. +dependencies: + - { role: evolix/drbd, when: kvm_install_drbd }