Skip to content

Instantly share code, notes, and snippets.

@DmitryMiroshnichenko
Last active October 20, 2015 11:41
Show Gist options
  • Save DmitryMiroshnichenko/3340b3bbd5a57365af4d to your computer and use it in GitHub Desktop.
Save DmitryMiroshnichenko/3340b3bbd5a57365af4d to your computer and use it in GitHub Desktop.
Simple script to init openVbx installation for https://gist.github.com/DmitryMiroshnichenko/52816fa390eb681b6d83
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root" 1>&2
exit 1
fi
apt-get -y install git
git clone https://gist.github.com/52816fa390eb681b6d83.git
cd 52816fa390eb681b6d83
sh installOpenVbx.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment