diff options
| -rw-r--r-- | roles/nvidia_gtx1060/tasks/install-archlinux.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/roles/nvidia_gtx1060/tasks/install-archlinux.yml b/roles/nvidia_gtx1060/tasks/install-archlinux.yml index 6d18eea4..0a8565ea 100644 --- a/roles/nvidia_gtx1060/tasks/install-archlinux.yml +++ b/roles/nvidia_gtx1060/tasks/install-archlinux.yml @@ -20,6 +20,10 @@ dest: "/etc/modprobe.d/nvidia.conf" mode: "0644" notify: "Rebuild initramfs" + tags: + # Since the /etc/mkinitcpio isn't available on the docker container + # Ignore this for testing, + - "molecule-notest" - name: "Get current mkinitcpio MODULES" become: true @@ -29,6 +33,10 @@ # noqa var-naming[no-role-prefix] as it describes the current kernel modules and not the nvidia modules register: "current_kernel_modules" changed_when: false + tags: + # Since the /etc/mkinitcpio isn't available on the docker container + # Ignore this for testing, + - "molecule-notest" - name: "Add NVIDIA modules to mkinitcpio" become: true @@ -40,3 +48,7 @@ regexp: "^MODULES=\\(.*\\)" line: "MODULES=({{ all_modules | join(' ') }})" notify: "Rebuild initramfs" + tags: + # Since the /etc/mkinitcpio isn't available on the docker container + # Ignore this for testing, + - "molecule-notest" |
