Skip to content
This repository was archived by the owner on Jul 21, 2023. It is now read-only.

Commit b07727e

Browse files
committed
ansible: don't check if nbdkit plugin works properly (RHBZ#1847898)
The check is currently failing on latest EL8. After discussion it turned out that calling the nbdkit properly so that it universaly works is not so trivial anymore. It seems best to remove the deployment check and let virt-v2v do it properly before conversion. Signed-off-by: Tomáš Golembiovský <[email protected]>
1 parent 9af339a commit b07727e

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

ansible/oVirt.v2v-conversion-host/tasks/check-transport-vddk-facts.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,7 @@
1111
ignore_errors: "yes"
1212
register: stat_nbdkit_plugin
1313

14-
- name: Check if VDDK nbdkit plugin works
15-
command: nbdkit --dump-plugin vddk
16-
environment:
17-
LD_LIBRARY_PATH: "{{ v2v_vddk_install_dir }}/vmware-vix-disklib-distrib/lib64"
18-
ignore_errors: "yes"
19-
register: command_nbdkit_plugin
20-
changed_when: false
21-
2214
- name: Set VDDK and nbdkit facts
2315
set_fact:
2416
v2v_vddk_library_installed: "{{ stat_vddk_library.stat.exists }}"
2517
v2v_nbdkit_plugin_installed: "{{ stat_nbdkit_plugin.stat.exists }}"
26-
v2v_nbdkit_plugin_working: "{{ command_nbdkit_plugin.rc == 0 }}"

ansible/oVirt.v2v-conversion-host/tasks/check-transport-vddk.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,3 @@
1010
assert:
1111
that: "{{ v2v_nbdkit_plugin_installed }}"
1212
msg: "VDDK nbdkit plugin is not installed"
13-
14-
- name: Assert that VDDK nbdkit plugin test succeeded
15-
assert:
16-
that: "{{ v2v_nbdkit_plugin_working }}"
17-
msg: "VDDK nbdkit plugin failed validation"

0 commit comments

Comments
 (0)