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.

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