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/sh | |
syntax_errors=0 | |
error_msg=$(mktemp /tmp/error_msg.XXXXXX) | |
if git rev-parse --quiet --verify HEAD > /dev/null | |
then | |
against=HEAD | |
else | |
# Initial commit: diff against an empty tree object |
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
# Used by WSGI to create the Flask application | |
import sys | |
import os | |
import newrelic.agent | |
dirname = os.path.dirname(globals()['__file__']) | |
sys.path.insert(0, dirname) | |
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
firewall { "504 Allow packet fragments to ${nfs_server} from ${web_servers[0]}": | |
table => 'filter', | |
chain => 'INPUT', | |
proto => 'tcp', | |
isfragments => true, | |
action => 'accept', | |
source => $web_servers[0], | |
} |
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
--- src/c/configure.ac.orig 2012-11-21 10:30:09.966335111 +0100 | |
+++ src/c/configure.ac 2012-11-21 10:30:45.536188378 +0100 | |
@@ -22,27 +22,6 @@ | |
AC_CONFIG_HEADER([config.h]) | |
# Checks for programs. | |
-AC_ARG_WITH(cppunit, | |
- [ --without-cppunit do not use CPPUNIT]) | |
- | |
-if test "$with_cppunit" = "no" ; then |
NewerOlder