blob: 074b7c0aa3e508c6a3ab442aa7dfc56eb5839abe (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
openssl aes-256-cbc -K $encrypted_e3bb6b75f43b_key -iv $encrypted_e3bb6b75f43b_iv -in travis/projdocs-private.key.enc -out travis/projdocs-private.key -d
cp travis/projdocs-private.key ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
echo -e "Host *\n\tStrictHostKeyChecking no\n" > ~/.ssh/config
|