Update
This commit is contained in:
parent
fdc334f919
commit
b9baa9ced7
2 changed files with 19 additions and 9 deletions
|
@ -57,6 +57,16 @@
|
||||||
- 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
|
||||||
|
dnf:
|
||||||
|
name: cuda
|
||||||
|
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
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
# 39 -> 40
|
# # 39 -> 40
|
||||||
- name: remove sddm-wayland-plasma
|
# - name: remove sddm-wayland-plasma
|
||||||
dnf:
|
# dnf:
|
||||||
name: "sddm-wayland-plasma"
|
# name: "sddm-wayland-plasma"
|
||||||
state: absent
|
# state: absent
|
||||||
update_cache: true
|
# update_cache: true
|
||||||
skip_broken: true
|
# skip_broken: true
|
||||||
nobest: false
|
# nobest: false
|
||||||
allowerasing: true
|
# allowerasing: true
|
||||||
|
|
||||||
- name: remove other files
|
- name: remove other files
|
||||||
include_tasks: yaml_sub/myrepo_clean.yaml
|
include_tasks: yaml_sub/myrepo_clean.yaml
|
||||||
|
|
Loading…
Reference in a new issue