spark/roles/gnome/tasks/dconf.yml
Géza Búza 8d8ec13b8f Add GNOME support
Add ability to install the GNOME desktop environment.
Most common global settings (date and time, power management, touchpad settings, theme) can be configured via Ansible variables.
See "group_vars/all" file.
2018-04-19 22:19:26 +02:00

13 lines
417 B
YAML

---
- name: Creating gnome.d directory for DConf
file: path=/etc/dconf/db/gnome.d state=directory mode=0755
- name: Configuring GNOME
template: src=gnome.d/00-spark.j2 dest=/etc/dconf/db/gnome.d/00-spark mode=0644
notify: update DConf database
- name: Configuring DConf
lineinfile: path=/etc/dconf/profile/user line={{ item }} create=yes mode=0644
with_items:
- "user-db:user"
- "system-db:gnome"