mirror of
https://github.com/trailofbits/algo.git
synced 2025-04-25 10:43:48 +02:00
* refactored local actions to cleaner syntax * openssl commands folded * removed unnecessary local_action's
12 lines
243 B
YAML
12 lines
243 B
YAML
---
|
|
|
|
- name: Ensure the local ssh directory is exist
|
|
file:
|
|
path: ~/.ssh/
|
|
state: directory
|
|
|
|
- name: Copy the algo ssh key to the local ssh directory
|
|
copy:
|
|
src: "{{ SSH_keys.private }}"
|
|
dest: ~/.ssh/algo.pem
|
|
mode: '0600'
|