Fix NVIDIA installer task; remove jellyfin-tools reference file
Ansible Lint / lint (push) Successful in 4s
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user