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.

74 lines
1.4KB

  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. - python3
  19. - ipcalc
  20. - ipv6calc
  21. - oping
  22. - jo
  23. - jq
  24. # stdin2barcodewindow dependencies
  25. - qrencode
  26. - xloadimage
  27. - gcalcli
  28. - lshw
  29. # ansible
  30. - python3-setuptools
  31. - python3-setuptools
  32. - python3-pip
  33. - name: jpath - JMESPath exploration tool in the terminal
  34. pip:
  35. name: jmespath-terminal
  36. executable: pip3
  37. - name: make ssh-agent user service override directory
  38. file:
  39. path: /etc/systemd/user/ssh-agent.service.d
  40. state: directory
  41. - name: make ssh-agent user service enableable
  42. copy:
  43. src: ssh-agent.service.d.install
  44. dest: /etc/systemd/user/ssh-agent.service.d/install.conf
  45. - name: ensure ssh-agent user service is enabled for all users
  46. systemd:
  47. enabled: yes
  48. scope: global
  49. name: ssh-agent.service
  50. - name: ensure gpg-agent user socket is enabled for all users
  51. systemd:
  52. enabled: yes
  53. scope: global
  54. name: gpg-agent.socket
  55. - name: pam_env.conf
  56. copy:
  57. src: pam_env.conf
  58. dest: /etc/security/pam_env.conf
  59. - name: stdin2qrcode
  60. copy:
  61. src: stdin2qrcode.fish
  62. dest: /etc/fish/functions/stdin2qrcode.fish