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.

41 Zeilen
806B

  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_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_id}}
  32. when: dconf_lock_paths is defined
  33. notify: dconf update