Skip to content

Commit 011f6cc

Browse files
Merge pull request #1122 from vojtechtrefny/master_misc-vdo-x86_64
misc: Do not try to install VDO on 32bit Debian
2 parents 2be01d7 + 16ed3df commit 011f6cc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

misc/libblockdev-tasks.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,11 +204,17 @@
204204
- smartmontools
205205
- targetcli-fb
206206
- udftools
207-
- vdo
208207
- volume-key
209208
- xfsprogs
210209
when: (ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu') and test_dependencies|bool
211210

211+
- name: Install vdo test dependencies (Debian/Ubuntu 64bit)
212+
package:
213+
state: present
214+
name:
215+
- vdo
216+
when: (ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu') and test_dependencies|bool and ansible_architecture != 'i386'
217+
212218
####### Common actions
213219

214220
- name: Start LVM DBus service

0 commit comments

Comments
 (0)