I hereby claim:
- I am jghiloni on github.
- I am joshghiloni (https://keybase.io/joshghiloni) on keybase.
- I have a public key whose fingerprint is 3818 FF0C 6B0E B0F2 5256 F634 A905 5D72 5BF4 C95A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Status
tab and note the IP address of the director VMCredentials
tab and click the link that says
Director Credentials
. Note the username and password--- | |
resources: | |
- name: source | |
type: git | |
source: | |
uri: {{git-uri}} | |
branch: {{git-branch}} | |
private_key: {{git-private-key}} | |
- name: s3 |
#!/bin/bash | |
set -eu | |
opsman() { | |
om -t OPSMAN_URL -k -u OPSMAN_USER -p OPSMAN_PASSWORD -f json "$@" | |
} | |
OFS=$IFS | |
IFS=$'\n' |
package main | |
import ( | |
"log" | |
"os" | |
"strings" | |
"gopkg.in/yaml.v2" | |
) |
#!/bin/bash | |
function defer() { | |
existing=$(trap -p EXIT | sed -e "s/^trap -- '\(.*\)' EXIT$/\1/" -e "s/\'\\\'\'/'/g") | |
new="$@" | |
if [ ! -z "${existing}" ]; then | |
existing="${existing} ;" | |
fi |