No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- ---
-
- - name: make sure no other display managers are installed
- apt:
- pkg: "{{ item }}"
- state: absent
- with_items:
- - slim
- - gdm3
- - kdm
- - sddm
-
- - name: install packages
- apt:
- pkg: "{{ item }}"
- state: installed
- with_items:
- - xserver-xorg
- - xserver-xorg-video-all
- - xserver-xorg-input-all
- - x11-xserver-utils
- - lightdm
- - yad
-
- - name: lightdm configuration
- template:
- src: lightdm.conf.j2
- dest: /etc/lightdm/lightdm.conf
- notify: restart lightdm
-
- - include: mainentance.yml
-
- - name: lightdm started
- service:
- name: lightdm
- state: started
-
- - meta: flush_handlers
|