Added CCP deployment scripts

This commit is contained in:
Aleksandr Didenko
2016-06-27 17:57:29 +02:00
parent 0c9826c60f
commit df4fe074f0
15 changed files with 285 additions and 3 deletions

5
vagrant-scripts/ssh-keygen.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
mkdir -p ssh
if ! [ -f ssh/id_rsa ] ; then
ssh-keygen -N '' -t rsa -f ssh/id_rsa && cp ssh/id_rsa.pub ssh/authorized_keys
fi