This file contains hidden or 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
import jenkins.model.*; | |
// start in a state where no builds are started | |
Jenkins.instance.doQuietDown(); |
This file contains hidden or 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 | |
############################################################################### | |
# 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. |