logdetective: do not reboot the machine every-time
This commit is contained in:
parent
9e50573296
commit
5c935fd0cc
1 changed files with 10 additions and 6 deletions
|
@ -13,12 +13,16 @@
|
||||||
- wget
|
- wget
|
||||||
- gcc-c++
|
- gcc-c++
|
||||||
|
|
||||||
- name: Download and install cuda drivers repo
|
- name: Download file with check (sha256)
|
||||||
ansible.builtin.shell:
|
ansible.builtin.get_url:
|
||||||
cmd: |
|
url: https://developer.download.nvidia.com/compute/cuda/repos/fedora41/x86_64/cuda-fedora41.repo
|
||||||
cd /etc/yum.repos.d/ && wget https://developer.download.nvidia.com/compute/cuda/repos/fedora41/x86_64/cuda-fedora41.repo
|
dest: /etc/yum.repos.d/
|
||||||
dnf clean all
|
tags:
|
||||||
dnf -y install cuda-toolkit-12
|
- cuda_installation
|
||||||
|
|
||||||
|
- name: install cuda
|
||||||
|
ansible.builtin.package:
|
||||||
|
name: cuda-toolkit-12
|
||||||
register: cuda_installation
|
register: cuda_installation
|
||||||
tags:
|
tags:
|
||||||
- cuda_installation
|
- cuda_installation
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue