From 16ed3df727856a756ee3db0272ac7103b1a6552a Mon Sep 17 00:00:00 2001 From: Vojtech Trefny Date: Tue, 26 Aug 2025 13:56:43 +0200 Subject: [PATCH] misc: Do not try to install VDO on 32bit Debian The vdo package is not available on 32bit. --- misc/libblockdev-tasks.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/misc/libblockdev-tasks.yml b/misc/libblockdev-tasks.yml index c2a27acad..d5f9854b8 100644 --- a/misc/libblockdev-tasks.yml +++ b/misc/libblockdev-tasks.yml @@ -204,11 +204,17 @@ - smartmontools - targetcli-fb - udftools - - vdo - volume-key - xfsprogs when: (ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu') and test_dependencies|bool +- name: Install vdo test dependencies (Debian/Ubuntu 64bit) + package: + state: present + name: + - vdo + when: (ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu') and test_dependencies|bool and ansible_architecture != 'i386' + ####### Common actions - name: Start LVM DBus service