mirror of
https://github.com/pigmonkey/spark.git
synced 2026-01-23 02:24:09 +00:00
16 lines
467 B
YAML
16 lines
467 B
YAML
---
|
|
- name: Install GNOME Display Manager (GDM)
|
|
pacman: name=gdm state=present
|
|
|
|
- name: Enable GDM
|
|
service: name=gdm.service enabled=yes
|
|
|
|
- name: Creating DConf configuration profile
|
|
copy: src=profile/gdm dest=/etc/dconf/profile/gdm
|
|
|
|
- name: Creating gdm.d directory for DConf
|
|
file: path=/etc/dconf/db/gdm.d state=directory mode=0755
|
|
|
|
- name: Configuring GDM
|
|
template: src=gdm.d/00-spark.j2 dest=/etc/dconf/db/gdm.d/00-spark
|
|
notify: update DConf database
|