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

Commit 50c883f

Browse files
authored
Merge pull request #70 from nyoxi/nbdkit-check
ansible: don't check if nbdkit plugin works properly (RHBZ#1847898)
2 parents 8393ecf + b07727e commit 50c883f

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

-9
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

-5
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)