From 97df0a6d141b3e92782f728c0dd6bc3b96c18ca4 Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Fri, 22 May 2015 10:09:39 +0200 Subject: [PATCH] Ensure /root/.ssh exists --- start.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/start.sh b/start.sh index c891fca..eaf1c0d 100644 --- a/start.sh +++ b/start.sh @@ -2,6 +2,7 @@ # Disable Strict Host checking for non interactive git clones +mkdir -p -m 0700 /root/.ssh echo -e "Host *\n\tStrictHostKeyChecking no\n" >> /root/.ssh/config # Pull down code form git for our site!