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 | |
| 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:
| diff --git a/src/arch/x86/drivers/xen/hvm.c b/src/arch/x86/drivers/xen/hvm.c | |
| index 7ac32d5..cee7ce8 100644 | |
| --- a/src/arch/x86/drivers/xen/hvm.c | |
| +++ b/src/arch/x86/drivers/xen/hvm.c | |
| @@ -500,4 +500,4 @@ struct pci_driver hvm_driver __pci_driver = { | |
| REQUIRING_SYMBOL ( hvm_driver ); | |
| /* Drag in netfront driver */ | |
| -REQUIRE_OBJECT ( netfront ); | |
| +/* REQUIRE_OBJECT ( netfront );*/ |