Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Tento repozitář je archivovaný. Můžete prohlížet soubory, klonovat, ale nemůžete nahrávat a vytvářet nové úkoly a požadavky na natažení.
|
- ---
- - apt:
- pkg:
- - openssh-client
- - ssh-agent-filter
- - gnupg
- - gnupg-agent
- - agent-transfer
- - mtr
- - p7zip
- - zip
- - unzip
- - rsync
- - zsync
- - secure-delete
-
- - name: jpath - JMESPath exploration tool in the terminal
- pip:
- name: jmespath-terminal
-
- - name: make ssh-agent user service override directory
- file:
- path: /etc/systemd/user/ssh-agent.service.d
- state: directory
-
- - name: make ssh-agent user service enableable
- copy:
- src: ssh-agent.service.d.install
- dest: /etc/systemd/user/ssh-agent.service.d/install.conf
-
- - name: ensure ssh-agent user service is enabled for all users
- systemd:
- enabled: yes
- scope: global
- name: ssh-agent.service
-
- - name: ensure gpg-agent user socket is enabled for all users
- systemd:
- enabled: yes
- scope: global
- name: gpg-agent.socket
-
- - name: pam_env.conf
- copy:
- src: pam_env.conf
- dest: /etc/security/pam_env.conf
|