Tested successfully, fix the rest.

This commit is contained in:
Hyperling 2021-02-13 07:25:15 -06:00
parent 240db361d5
commit 008963e87f

View File

@ -73,7 +73,7 @@
line: 'GRUB_DEFAULT="Advanced options for Ubuntu>Ubuntu, with Linux 5.4.0-65-generic"' line: 'GRUB_DEFAULT="Advanced options for Ubuntu>Ubuntu, with Linux 5.4.0-65-generic"'
state: present state: present
backup: yes backup: yes
when: amdgpu_install.failed and hwe_kernel.stdout > 0 and ga_kernel.failed when: amdgpu_install.failed and hwe_kernel.stdout != "0" and ga_kernel.failed
- name: AMDGPU | Prepare Cron Job To SCM - name: AMDGPU | Prepare Cron Job To SCM
cron: cron:
@ -83,15 +83,15 @@
job: "scm.sh" job: "scm.sh"
state: present state: present
disabled: no disabled: no
when: amdgpu_install.failed and hwe_kernel.stdout > 0 and ga_kernel.failed when: amdgpu_install.failed and hwe_kernel.stdout != "0" and ga_kernel.failed
- name: AMDGPU | Reboot To GA Kernel - name: AMDGPU | Reboot To GA Kernel
shell: reboot shell: reboot
when: amdgpu_install.failed and hwe_kernel.stdout > 0 and ga_kernel.failed when: amdgpu_install.failed and hwe_kernel.stdout != "0" and ga_kernel.failed
- pause: - pause:
prompt: "Rebooting to GA kernel! Please hold." prompt: "Rebooting to GA kernel! Please hold."
when: amdgpu_install.failed and hwe_kernel.stdout > 0 and ga_kernel.failed when: amdgpu_install.failed and hwe_kernel.stdout != "0" and ga_kernel.failed
@ -104,11 +104,11 @@
linux-modules-5.1* \ linux-modules-5.1* \
linux-modules-5.8.0-* \ linux-modules-5.8.0-* \
linux-modules-5.6.0-*" linux-modules-5.6.0-*"
when: amdgpu_install.failed and hwe_kernel.stdout > 0 when: amdgpu_install.failed and hwe_kernel.stdout != "0"
- name: AMDGPU | Update + Clean System - name: AMDGPU | Update + Clean System
shell: "apt update; apt dist-upgrade -y; apt autoremove -y" shell: "apt update; apt dist-upgrade -y; apt autoremove -y"
when: amdgpu_install.failed and hwe_kernel.stdout > 0 when: amdgpu_install.failed and hwe_kernel.stdout != "0"
# This is to ensure we can test adding `apt install --install-recommends linux-generic` later # This is to ensure we can test adding `apt install --install-recommends linux-generic` later
- name: AMDGPU | Boot Default Kernel - name: AMDGPU | Boot Default Kernel
@ -118,7 +118,7 @@
line: 'GRUB_DEFAULT=0' line: 'GRUB_DEFAULT=0'
state: present state: present
backup: yes backup: yes
when: amdgpu_install.failed and hwe_kernel.stdout > 0 when: amdgpu_install.failed and hwe_kernel.stdout != "0"
- name: AMDGPU | Prepare Cron Job To SCM - name: AMDGPU | Prepare Cron Job To SCM
cron: cron:
@ -128,15 +128,15 @@
job: "scm.sh" job: "scm.sh"
state: present state: present
disabled: no disabled: no
when: amdgpu_install.failed and hwe_kernel.stdout > 0 when: amdgpu_install.failed and hwe_kernel.stdout != "0"
- name: AMDGPU | Reboot To Ensure GA Is 0 - name: AMDGPU | Reboot To Ensure GA Is 0
shell: reboot shell: reboot
when: amdgpu_install.failed and hwe_kernel.stdout > 0 when: amdgpu_install.failed and hwe_kernel.stdout != "0"
- pause: - pause:
prompt: "Rebooting to clear kernels! Please hold." prompt: "Rebooting to clear kernels! Please hold."
when: amdgpu_install.failed and hwe_kernel.stdout > 0 when: amdgpu_install.failed and hwe_kernel.stdout != "0"