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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

62 line
1.2KB

  1. ---
  2. - name: debian packages
  3. apt:
  4. pkg:
  5. - openssh-client
  6. - ssh-agent-filter
  7. - gnupg
  8. - gnupg-agent
  9. - agent-transfer
  10. - mtr
  11. - p7zip
  12. - zip
  13. - unzip
  14. - rsync
  15. - zsync
  16. - secure-delete
  17. - python-pip # needed by jmespath-terminal
  18. # stdin2barcodewindow dependencies
  19. - qrencode
  20. - xloadimage
  21. - gcalcli
  22. - lshw
  23. - name: jpath - JMESPath exploration tool in the terminal
  24. pip:
  25. name: jmespath-terminal
  26. - name: make ssh-agent user service override directory
  27. file:
  28. path: /etc/systemd/user/ssh-agent.service.d
  29. state: directory
  30. - name: make ssh-agent user service enableable
  31. copy:
  32. src: ssh-agent.service.d.install
  33. dest: /etc/systemd/user/ssh-agent.service.d/install.conf
  34. - name: ensure ssh-agent user service is enabled for all users
  35. systemd:
  36. enabled: yes
  37. scope: global
  38. name: ssh-agent.service
  39. - name: ensure gpg-agent user socket is enabled for all users
  40. systemd:
  41. enabled: yes
  42. scope: global
  43. name: gpg-agent.socket
  44. - name: pam_env.conf
  45. copy:
  46. src: pam_env.conf
  47. dest: /etc/security/pam_env.conf
  48. - name: stdin2qrcode
  49. copy:
  50. src: stdin2qrcode.fish
  51. dest: /etc/fish/functions/stdin2qrcode.fish