You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 6 година
пре 5 година
пре 6 година
123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---
  2. - name: install maintenance mode packages
  3. apt:
  4. name:
  5. - yad
  6. - xbindkeys
  7. - feh
  8. notify: restart lightdm
  9. - name: maintenance user
  10. user:
  11. name: maintenance
  12. system: yes
  13. createhome: yes
  14. home: /var/lib/maintenance
  15. notify: restart lightdm
  16. - name: maintenance directory
  17. file:
  18. path: /usr/local/share/maintenance
  19. state: directory
  20. notify: restart lightdm
  21. - name: maintenance xsession desktop
  22. template:
  23. src: maintenance.desktop.j2
  24. dest: /usr/local/share/maintenance/maintenance.desktop
  25. notify: restart lightdm
  26. - name: maintenance xsession script
  27. template:
  28. src: maintenance-xsession.sh.j2
  29. dest: /usr/local/share/maintenance/xsession
  30. mode: u=rwx,g=rx,o=rx
  31. notify: restart lightdm
  32. - name: maintenance xbindkeys
  33. template:
  34. src: maintenance.xbindkeys.j2
  35. dest: /usr/local/share/maintenance/xbindkeys
  36. notify: restart lightdm