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.

dconf-lock.yaml 780B

123456789101112131415161718192021222324252627282930313233343536373839
  1. ---
  2. - name: install required debian packages
  3. apt:
  4. pkg:
  5. - dconf-cli
  6. - name: dconf profile directory
  7. file:
  8. path: /etc/dconf/profile
  9. state: directory
  10. - name: dconf profile dbs setting
  11. copy:
  12. src: dconf-lock/profile/user
  13. dest: /etc/dconf/profile/user
  14. notify: dconf update
  15. - name: dconf local db directory
  16. file:
  17. path: /etc/dconf/db/local.d/
  18. state: directory
  19. - name: dconf settings
  20. template:
  21. src: dconf-lock/settings.j2
  22. dest: /etc/dconf/db/local.d/{{dconf_lock_id}}
  23. notify: dconf update
  24. - name: dconf locks directory
  25. file:
  26. path: /etc/dconf/db/local.d/locks
  27. state: directory
  28. - name: dconf locks
  29. template:
  30. src: dconf-lock/locks.j2
  31. dest: /etc/dconf/db/local.d/locks/{{dconf_lock_id}}
  32. notify: dconf update