spark/roles/gdm/tasks/main.yml
Pig Monkey 33ffe15f6f remove redundant /etc/dconf/profile creation
This is done by the dconf role.
2018-05-05 13:09:16 -07:00

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