Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
- ---
-
- - 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_lock_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_lock_id}}
- notify: dconf update
|