Compare commits
4 Commits
51c7674c3f
...
8c90fa1b0b
Author | SHA1 | Date | |
---|---|---|---|
8c90fa1b0b | |||
51ec7091b0 | |||
87d9d8c642 | |||
220faf9f6b |
@ -17,7 +17,7 @@
|
||||
- backup
|
||||
- ego
|
||||
- firefox
|
||||
- lutris
|
||||
- gaming
|
||||
|
||||
# - flutter
|
||||
# - virtual
|
||||
|
@ -1,8 +1,8 @@
|
||||
---
|
||||
#- import_tasks: ubuntu.yml
|
||||
# when: ansible_distribution == "Ubuntu"
|
||||
#
|
||||
#- import_tasks: arch.yml
|
||||
# when: ansible_distribution == "Archlinux"
|
||||
- import_tasks: ubuntu.yml
|
||||
when: ansible_distribution == "Ubuntu"
|
||||
|
||||
- import_tasks: timekpr.yml
|
||||
- import_tasks: arch.yml
|
||||
when: ansible_distribution == "Archlinux"
|
||||
#
|
||||
#- import_tasks: timekpr.yml
|
||||
|
17
roles/gaming/tasks/arch.yml
Normal file
17
roles/gaming/tasks/arch.yml
Normal file
@ -0,0 +1,17 @@
|
||||
- name: install lutris
|
||||
become: yes
|
||||
community.general.pacman:
|
||||
name:
|
||||
- lutris
|
||||
|
||||
- name: install steam
|
||||
become: yes
|
||||
community.general.pacman:
|
||||
name:
|
||||
- steam
|
||||
|
||||
- name: install ttf-liberation fonts for replacement for Arial font
|
||||
become: yes
|
||||
community.general.pacman:
|
||||
name:
|
||||
- ttf-liberation
|
@ -1,5 +0,0 @@
|
||||
- name: install lutris
|
||||
become: yes
|
||||
community.general.pacman:
|
||||
name:
|
||||
- lutris
|
@ -39,3 +39,27 @@
|
||||
- name: update yay cache
|
||||
shell:
|
||||
cmd: yay -Y --gendb
|
||||
|
||||
|
||||
- name: "add multilib"
|
||||
become: yes
|
||||
lineinfile:
|
||||
dest: "/etc/pacman.conf"
|
||||
state: "present"
|
||||
line: "[multilib]"
|
||||
regexp: "^\\[multilib\\]"
|
||||
insertafter: "^#\\[multilib\\]"
|
||||
|
||||
- name: "add multilib (cont)"
|
||||
become: yes
|
||||
lineinfile:
|
||||
dest: "/etc/pacman.conf"
|
||||
state: "present"
|
||||
line: "Include = /etc/pacman.d/mirrorlist"
|
||||
insertafter: "^\\[multilib\\]"
|
||||
regexp: "Include = /etc/pacman.d/mirrorlist"
|
||||
|
||||
- name: Update cache
|
||||
become: yes
|
||||
community.general.pacman:
|
||||
update_cache: true
|
||||
|
Loading…
Reference in New Issue
Block a user