Fix NVIDIA installer task; remove jellyfin-tools reference file
Ansible Lint / lint (push) Successful in 4s

- Switch NVIDIA installer copy to get_url so the LXC downloads it
  directly from NVIDIA's servers rather than expecting the file on the
  Ansible controller
- Remove jellyfin-tools (original compose reference from upstream);
  the Ansible template is now the authoritative compose file

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Adyrem
2026-05-18 13:41:44 +02:00
parent 3bb01ddaaf
commit f4c1651d17
2 changed files with 3 additions and 135 deletions
+3 -3
View File
@@ -104,9 +104,9 @@
path: /usr/lib/x86_64-linux-gnu/libcuda.so.{{ nvidia_driver_version }}
register: _nvidia_libs
- name: Copy NVIDIA installer from Proxmox host to LXC
ansible.builtin.copy:
src: /tmp/nvidia-580.run
- name: Download NVIDIA installer on LXC
ansible.builtin.get_url:
url: "https://download.nvidia.com/XFree86/Linux-x86_64/{{ nvidia_driver_version }}/NVIDIA-Linux-x86_64-{{ nvidia_driver_version }}.run"
dest: /tmp/nvidia.run
mode: "0755"
when: not _nvidia_libs.stat.exists