Last active
October 23, 2015 14:35
-
-
Save Makova/5d4e6d8e681eac5fc219 to your computer and use it in GitHub Desktop.
Run on your laptop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Usage: ./deploy.sh [host] | |
host="${1:[email protected]}" | |
# The host key might change when we instantiate a new VM, so | |
# we remove (-R) the old host key from known_hosts | |
ssh-keygen -R "${host#*@}" 2> /dev/null | |
tar cj . | ssh -o 'StrictHostKeyChecking no' "$host" ' | |
sudo rm -rf ~/chef && | |
mkdir ~/chef && | |
cd ~/chef && | |
tar xj && | |
sudo bash install.sh' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment