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.
|
- ---
- - 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
|