Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Dieses Repo ist archiviert. Du kannst Dateien sehen und es klonen, kannst aber nicht pushen oder Issues/Pull-Requests öffnen.
|
- ---
-
- - name: install required debian packages
- apt:
- pkg:
- - dconf-cli
-
- - name: dconf profile directory
- file:
- path: /etc/dconf/profile
- state: directory
-
- - name: dconf profile dbs setting
- copy:
- src: dconf-lock/profile/user
- dest: /etc/dconf/profile/user
- notify: dconf update
-
- - name: dconf local db directory
- file:
- path: /etc/dconf/db/local.d/
- state: directory
-
- - name: dconf settings
- template:
- src: dconf-lock/settings.j2
- dest: /etc/dconf/db/local.d/{{dconf_id}}
- notify: dconf update
-
- - name: dconf locks directory
- file:
- path: /etc/dconf/db/local.d/locks
- state: directory
-
- - name: dconf locks
- template:
- src: dconf-lock/locks.j2
- dest: /etc/dconf/db/local.d/locks/{{dconf_id}}
- when: dconf_lock_paths is defined
- notify: dconf update
|