Fix non-working roles

This commit is contained in:
Przemek Grondek 2024-05-08 01:37:02 +02:00
parent af408b2869
commit 7de3f1032c
5 changed files with 11 additions and 5 deletions

View File

@ -4,13 +4,13 @@
- prepare
- systemd-boot
- ubuntu
- prusa-slicer
- desktop
- dwm
- dev-java
- autofs
- dwm
- prusa-slicer
- docker
- laptop
- desktop
- backup
- gaming

View File

@ -88,7 +88,6 @@
- ttf-fira-code
- ttf-font-awesome
- ttf-liberation
- ttf-symbola
- ttf-ubuntu-font-family
- name: "Enable network manager"

View File

@ -38,6 +38,11 @@
make:
chdir: "{{ desktop_src_dir }}/dwm"
- name: ensure that xsessions directory exists
file:
path: /usr/share/xsessions
state: directory
- name: copy xsession
become: yes
copy:
@ -56,6 +61,7 @@
dest: /usr/share/xsessions/dwm-gnome.desktop
- name: Create gnome session dir
become: yes
file:
path: /usr/share/gnome-session/sessions
state: directory

View File

@ -34,7 +34,7 @@
command:
chdir: "{{ arch_src_dir }}/yay"
cmd:
makepkg -si --needed
makepkg -si --needed --noconfirm
- name: update yay cache
shell:

View File

@ -1,3 +1,4 @@
- include_tasks: install-program.yml
- include_tasks: config-repository.yml
when: ansible_distribution == "Ubuntu"