Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 3b910965 authored by Jason Kridner's avatar Jason Kridner
Browse files

remove host key checking

parent 30419c48
No related merge requests found
Pipeline #14972 passed with stages
in 7 minutes and 55 seconds
...@@ -80,9 +80,9 @@ HERE ...@@ -80,9 +80,9 @@ HERE
eval "$(ssh-agent -s)" eval "$(ssh-agent -s)"
echo "${PRIVATE_KEY}" | base64 -d | ssh-add - echo "${PRIVATE_KEY}" | base64 -d | ssh-add -
if [ "$VER_DIR" = "latest" ]; then if [ "$VER_DIR" = "latest" ]; then
rsync -e 'ssh -p 45' -vP public/index.html docs@beagleboard.org:/var/www/docs/ rsync -e 'ssh -p 45 -o "StrictHostKeyChecking=no"' -vP public/index.html docs@beagleboard.org:/var/www/docs/
fi fi
rsync -e 'ssh -p 45' -avP --delete public/$VER_DIR/. docs@beagleboard.org:/var/www/docs/$VER_DIR rsync -e 'ssh -p 45 -o "StrictHostKeyChecking=no"' -avP --delete public/$VER_DIR/. docs@beagleboard.org:/var/www/docs/$VER_DIR
fi fi
fi fi
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment