25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - 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
|