This file contains 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
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 );*/ |
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 F0BE 97A9 0F3A 5885 A0E1 ABA3 4EEE E8E7 C549 498D
To claim this, I am signing this object:
This file contains 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
# 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:
- 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:
This file contains 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
#!/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} |
This file contains 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
// Square root implementation using Newton's Method | |
package main | |
import ( | |
"fmt" | |
"math" | |
) | |
func Sqrt(x float64) (z float64) { |
This file contains 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
// 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" |
This file contains 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
#!/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: |
This file contains 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
#!/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 |
OlderNewer