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
{ | |
"listeners": { | |
"*:8080": { | |
"pass": "routes/wordpress" | |
} | |
}, | |
"routes": { | |
"wordpress": [ | |
{ |
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 python2 | |
# Based on https://gist.github.com/jlsherrill/4fa35b787147e6f087fd302dfae2af25 | |
# If Foreman reports an invalid package then reduce the chunk size. | |
import requests | |
import argparse | |
import sys | |
def getorganization(foremansettings, org_name): |