From b2660f9f993614a4fb0dc780e5c688f3e7191771 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Thu, 11 Feb 2021 12:49:22 -0600 Subject: [PATCH] Fix too negative of logic. :P --- tasks/miner/drivers/amdgpu.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tasks/miner/drivers/amdgpu.yml b/tasks/miner/drivers/amdgpu.yml index 81db9c8..9b51e66 100644 --- a/tasks/miner/drivers/amdgpu.yml +++ b/tasks/miner/drivers/amdgpu.yml @@ -12,24 +12,24 @@ - name: AMDGPU | Folder shell: 'mkdir -p Downloads' - when: not amdgpu_installed.failed + when: amdgpu_installed.failed - name: AMDGPU | Download shell: 'scp ling@leet:InstallFiles/Drivers/amdgpu-pro-20.45-1188099-ubuntu-20.04.tar.xz Downloads/' - when: not amdgpu_installed.failed + when: amdgpu_installed.failed - name: AMDGPU | Extract shell: 'cd Downloads; tar -xvf amdgpu-pro-20.45-1188099-ubuntu-20.04.tar.xz' - when: not amdgpu_installed.failed + when: amdgpu_installed.failed - name: AMDGPU | Install 1 - All shell: 'cd Downloads/amdgpu-pro-20.45-1188099-ubuntu-20.04; amdgpu-install -y' - when: not amdgpu_installed.failed + when: amdgpu_installed.failed - name: AMDGPU | Install 2 - Pro shell: 'cd Downloads/amdgpu-pro-20.45-1188099-ubuntu-20.04; amdgpu-pro-install -y --opencl=pal,legacy' - when: not amdgpu_installed.failed + when: amdgpu_installed.failed - name: AMDGPU | Delete shell: 'rm -rf Downloads/*' - when: not amdgpu_installed.failed \ No newline at end of file + when: amdgpu_installed.failed \ No newline at end of file