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.

66 lines
1.3KB

  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. - oping
  12. - p7zip
  13. - zip
  14. - unzip
  15. - rsync
  16. - zsync
  17. - secure-delete
  18. - python-pip # needed by jmespath-terminal
  19. - ipcalc
  20. - ipv6calc
  21. # stdin2barcodewindow dependencies
  22. - qrencode
  23. - xloadimage
  24. - gcalcli
  25. - lshw
  26. # - name: jpath - JMESPath exploration tool in the terminal
  27. # pip:
  28. # name: jmespath-terminal
  29. # executable: pip3
  30. - name: make ssh-agent user service override directory
  31. file:
  32. path: /etc/systemd/user/ssh-agent.service.d
  33. state: directory
  34. - name: make ssh-agent user service enableable
  35. copy:
  36. src: ssh-agent.service.d.install
  37. dest: /etc/systemd/user/ssh-agent.service.d/install.conf
  38. - name: ensure ssh-agent user service is enabled for all users
  39. systemd:
  40. enabled: yes
  41. scope: global
  42. name: ssh-agent.service
  43. - name: ensure gpg-agent user socket is enabled for all users
  44. systemd:
  45. enabled: yes
  46. scope: global
  47. name: gpg-agent.socket
  48. - name: pam_env.conf
  49. copy:
  50. src: pam_env.conf
  51. dest: /etc/security/pam_env.conf
  52. - name: stdin2qrcode
  53. copy:
  54. src: stdin2qrcode.fish
  55. dest: /etc/fish/functions/stdin2qrcode.fish