Skip to content

Instantly share code, notes, and snippets.

View OwensCode's full-sized avatar

Owen Berry OwensCode

View GitHub Profile
@OwensCode
OwensCode / start-quiet.groovy
Created March 24, 2016 14:14
Simple Groovy script to start Jenkins in quiet mode
import jenkins.model.*;
// start in a state where no builds are started
Jenkins.instance.doQuietDown();
#!/bin/bash
###############################################################################
# Shell script to help deal with problems with VirtualBox and network routing
# issues when running Docker, mainly caused by VPN software. The symptom is
# "docker-machine env" or "boot2docker env" hanging instead of returning
# environment variables. It might help with Vagrant as well.
#
# Tested on OS/X Yosemite with GNU coreutils installed via Homebrew, which
# might (or might not) affect the operation of the script.