25 lines
456 B
YAML
25 lines
456 B
YAML
---
|
|
- name: Create lightdm config dir
|
|
file:
|
|
path: /etc/lightdm
|
|
state: directory
|
|
tags: lightdm
|
|
|
|
- name: Set lightdm main configuration file
|
|
template:
|
|
src: lightdm.conf.j2
|
|
dest: /etc/lightdm/lightdm.conf
|
|
mode: 0644
|
|
owner: root
|
|
group: root
|
|
tags: lightdm
|
|
|
|
- name: Set lightdm users.conf file
|
|
template:
|
|
src: users.conf.j2
|
|
dest: /etc/lightdm/users.conf
|
|
mode: 0644
|
|
owner: root
|
|
group: root
|
|
tags: lightdm
|