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
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
Enable-MicrosoftUpdate | |
Install-WindowsUpdate | |
Set-TaskbarOptions -Size Small -Lock -Dock Bottom | |
cinst 7zip.install | |
cinst binroot | |
cinst bleachbit | |
cinst boxstarter | |
cinst bulkrenameutility.install |
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
### Keybase proof | |
I hereby claim: | |
* I am charlesflynn on github. | |
* I am charlesflynn (https://keybase.io/charlesflynn) on keybase. | |
* I have a public key whose fingerprint is FC0F E6DB C33D 2473 5232 F489 17D6 7311 B16C 984F | |
To claim this, I am signing this object: |
This file has been truncated, but you can view the full file.
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
INFO global: Vagrant version: 1.6.3 | |
INFO global: Ruby version: 2.0.0 | |
INFO global: RubyGems version: 2.0.14 | |
INFO global: VAGRANT_DOTFILE_PATH="/home/cflynn/.vagrant" | |
INFO global: VAGRANT_MOUNT="/home/cflynn" | |
INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/bin/../embedded/gems/gems/vagrant-1.6.3/bin/vagrant" | |
INFO global: VAGRANT_LOG="debug" | |
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/bin/../embedded" | |
INFO global: VAGRANT_INSTALLER_VERSION="2" | |
INFO global: VAGRANT_HOME="/home/cflynn/.vagrant.d" |
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
sudo ip addr flush dev br-ex | |
sudo sysctl -w net.ipv4.ip_forward=1 | |
sudo ip addr add 172.24.4.225/28 dev br-ex | |
sudo ip link set br-ex up | |
sudo route add -net 10.0.0.0/24 gw 172.24.4.226 | |
sudo service rabbitmq-server start | |
sudo service postgresql start | |
sudo service apache2 start | |
export SERVICE_TOKEN=password | |
export OS_TENANT_NAME=demo |
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
# Allow ping and ssh | |
nova secgroup-add-rule default icmp 0 0 0.0.0.0/0 | |
nova secgroup-add-rule default tcp 22 22 0.0.0.0/0 | |
# Add dsa key | |
nova keypair-add --pub-key ~/.ssh/id_dsa.pub `whoami`-dsa | |
# Grab and import the precise cloud image | |
curl -O http://cloud-images.ubuntu.com/precise/current/precise-server-cloudimg-amd64-disk1.img | |
glance image-create --name precise64 --disk-format=qcow2 --container-format=bare --is-public=True < ./precise-server-cloudimg-amd64-disk1.img |