This file contains hidden or 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
#!/bin/bash | |
# 20130130 | |
# This is a fork of the original script, adapted to work as bash installer on a | |
# pre-deployed Centos6 system. It takes args from bash invocation. It is not yet | |
# documented and all the following comments are originals from RedHat's guys. | |
# This is *REALLY* a wip and not usable by anyone without a bit of docs. | |
# We'll write down something when it will a bit tested and refactorized. | |
# This script configures a host system with OpenShift components. |
This file contains hidden or 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
#!/bin/bash | |
# | |
# Install virtualbox: | |
# - http://www.virtualbox.org/wiki/Downloads | |
# - Download iso: http://releases.ubuntu.com/10.10/ | |
# - Create a new virtualbox using the iso as the install media | |
# - Change network adapter to bridged | |
# - Use ifconfig to get ip address | |
# | |
# Once you have a clean install of debien... |