I hereby claim:
- I am shalomb on github.
- I am shalomb (https://keybase.io/shalomb) on keybase.
- I have a public key whose fingerprint is 6234 6401 0750 80B1 DADD D4EA C9DF B9FD 0BFC A396
To claim this, I am signing this object:
| #!/bin/bash | |
| # Initialize terraform so that the ansible-terraform-openstack dynamic | |
| # inventory script can succeed. | |
| bin_dir=${bin_dir:-$( cd "${BASH_SOURCE[0]%/*}" && pwd )} | |
| source "$bin_dir/init.sh" # shared config with ansible, cidb, etc | |
| export TF_VAR_OS_USERNAME="$OS_USERNAME" | |
| export TF_VAR_OS_PASSWORD="$OS_PASSWORD" |
| { | |
| "roles": [ | |
| { | |
| "operation": "read", | |
| "resource": "widgets", | |
| "name": "widget-reader" | |
| }, | |
| { | |
| "operation": "write", | |
| "resource": "widgets", |
| #!/bin/bash | |
| set -eu -o pipefail | |
| set -xv | |
| ssh_args='-i ./aws-jira.pem -o StrictHostKeyChecking=no -o PubkeyAuthentication=yes' | |
| [email protected] | |
| # Stop services so our backups are integral |
| #!/usr/bin/env python3 | |
| import yaml | |
| def get_content(file='clouds.yaml'): | |
| with open(file, 'r') as stream: | |
| return yaml.safe_load(stream) | |
| def set_content(file='clouds.yaml', content=None): | |
| with open(file, 'wt') as stream: |
| // Solution to exercise at https://tour.golang.org/methods/18 | |
| // Exercise: Stringers | |
| // Make the IPAddr type implement fmt.Stringer to print the address as a dotted quad. | |
| // For instance, IPAddr{1, 2, 3, 4} should print as "1.2.3.4". | |
| package main | |
| import ( | |
| "fmt" |
| // Square root implementation using Newton's Method | |
| package main | |
| import ( | |
| "fmt" | |
| "math" | |
| ) | |
| func Sqrt(x float64) (z float64) { |
| #!/bin/bash | |
| set -eu -o pipefail | |
| ping_url='http://localhost:8081/artifactory/api/system/ping' | |
| source /var/opt/jfrog/artifactory/etc/default | |
| ARTIFACTORY_PIDFILE="$ARTIFACTORY_PID" | |
| : ${START_TMO:=120} |
I hereby claim:
To claim this, I am signing this object:
| # requires python-netaddr on the control vm | |
| # pip install netaddr | |
| - name: Discover management ipv4 address | |
| hosts: localhost | |
| vars: | |
| mgmt_network_cidr: '172.19.0.0/16' # Change this to reflect our mgmt. subnet cidr | |
| tasks: | |
| - name: Collect subnet addresses |
I hereby claim:
To claim this, I am signing this object: