This commit is contained in:
David Rotermund 2024-04-25 11:14:26 +02:00
parent b9baa9ced7
commit 13e06c47eb
2 changed files with 26 additions and 1 deletions

View file

@ -0,0 +1,15 @@
---
- name: cuda
ansible.builtin.import_playbook: cuda.yaml
- name: fedora_all
ansible.builtin.import_playbook: fedora_all.yaml
- name: fusion_all
ansible.builtin.import_playbook: fusion_all.yaml
- name: oneAPI
ansible.builtin.import_playbook: oneAPI.yaml
- name: every_day
ansible.builtin.import_playbook: every_day.yaml

View file

@ -57,7 +57,7 @@
- name: disable tracker - name: disable tracker
shell: 'for f in /etc/xdg/autostart/tracker*.desktop; do echo "Hidden=true" | tee -a "$f"; done' shell: 'for f in /etc/xdg/autostart/tracker*.desktop; do echo "Hidden=true" | tee -a "$f"; done'
- name: Install cuda - name: Update cuda
dnf: dnf:
name: cuda name: cuda
enablerepo: "*" enablerepo: "*"
@ -67,6 +67,16 @@
nobest: false nobest: false
allowerasing: true allowerasing: true
- name: Update rest
dnf:
name: "*"
enablerepo: "*"
update_cache: true
state: latest
skip_broken: true
nobest: false
allowerasing: true
- name: Make sure systemd-oomd service unit is started - name: Make sure systemd-oomd service unit is started
systemd_service: systemd_service:
state: started state: started