mirror of
https://github.com/trailofbits/algo.git
synced 2025-04-26 11:12:48 +02:00
14 lines
295 B
YAML
14 lines
295 B
YAML
---
|
|
|
|
- name: Ensure the local ssh directory is exist
|
|
local_action:
|
|
module: file
|
|
path: "~/.ssh/"
|
|
state: directory
|
|
|
|
- name: Copy the algo ssh key to the local ssh directory
|
|
local_action:
|
|
module: copy
|
|
src: "{{ SSH_keys.private }}"
|
|
dest: ~/.ssh/algo.pem
|
|
mode: '0600'
|