Using bosh-lite; apply 5GB file upload patch - https://groups.google.com/a/cloudfoundry.org/forum/#!msg/bosh-users/MjiFAdpyimQ/VeOCpG9SsHQJ
Then:
Upload cf-release
bosh upload release https://bosh.io/d/github.com/cloudfoundry/cf-release?v=205
| #!/usr/bin/ruby | |
| require 'rubygems' | |
| require 'json' | |
| require 'pp' | |
| # for the #sh helper | |
| require "rake" | |
| require "rake/file_utils" | |
| include FileUtils | |
| ## PREREQ: Using CF cli tools, make sure you've logged in as a user (admin) who can see all orgs/spaces |
| -------------------------- | |
| -- CORE LIBRARY IMPORTS -- | |
| -------------------------- | |
| import Task exposing (Task, ThreadID, andThen, sequence, succeed, spawn) | |
| import Json.Decode exposing (Decoder, list, int, string, (:=), map, object2) | |
| import Signal exposing (Signal, Mailbox, mailbox, send) | |
| import List | |
| --------------------------------- | |
| -- THIRD PARTY LIBRARY IMPORTS -- |
Using bosh-lite; apply 5GB file upload patch - https://groups.google.com/a/cloudfoundry.org/forum/#!msg/bosh-users/MjiFAdpyimQ/VeOCpG9SsHQJ
Then:
Upload cf-release
bosh upload release https://bosh.io/d/github.com/cloudfoundry/cf-release?v=205
| #!/bin/bash | |
| sudo yum install -y git gcc make readline-devel openssl-devel vim emacs libffi-devel make glibc-devel gcc patch libxslt-devel libxml2-devel mysql mysql-devel postgresql-devel dnsmasq autoconf automake bison gcc-c++ libyaml-devel zlib-devel sqlite-devel cmake libssh2-devel | |
| echo 'GIT_PROMPT_THEME=Solarized' >> ~/.bashrc | |
| echo 'source ~/.bash-git-prompt/gitprompt.sh' >> ~/.bashrc | |
| git clone git://github.com/sstephenson/ruby-build.git /tmp/ruby-build | |
| cd /tmp/ruby-build | |
| ./install.sh |
| #!/usr/bin/env bash | |
| # usage: ./cipher_checker google.com 443 | |
| # Cipher checker by indiv | |
| # http://superuser.com/a/224263/204745 | |
| # OpenSSL requires the port number. | |
| SERVER=$1:$2 | |
| DELAY=1 | |
| ciphers=$(openssl ciphers 'ALL:eNULL' | sed -e 's/:/ /g') | |
| echo Obtaining cipher list from $(openssl version). |
Add the following chunk to your existing ISC dhcpd.conf file.
if exists user-class and ( option user-class = "iPXE" ) {
filename "http://boot.smidsrod.lan/boot.ipxe";
}
else {
filename "undionly.kpxe";
}
(or see https://gist.github.com/4008017 for a more elaborate setup
| cassettes |