I hereby claim:
- I am typhonius on github.
- I am typhonius (https://keybase.io/typhonius) on keybase.
- I have a public key whose fingerprint is 81AC 744D AEA4 BB5F 6971 D78E 8521 A8CC D186 9962
To claim this, I am signing this object:
#!/bin/bash | |
STLOAD=$(cat /proc/loadavg | awk '{print $1}') | |
while true; do | |
FINLOAD=$(cat /proc/loadavg | awk '{print $1}') | |
if (( $(echo "$STLOAD $FINLOAD" | awk '{ if ($1 >= 8 && $2 >= 8) print 1}') )); then | |
if [[ -z $TIME ]]; then | |
TIME=$(date +"%s") | |
fi |
diff --git a/ape.test b/ape.test | |
index 756cfeb..f34a7fe 100644 | |
--- a/ape.test | |
+++ b/ape.test | |
@@ -31,6 +31,7 @@ class ApeTestHelper extends DrupalWebTestCase { | |
$modules[] = 'path'; | |
$modules[] = 'user'; | |
$modules[] = 'common_test'; | |
+ $modules[] = 'ape_redirect_test'; | |
parent::setUp($modules); |
#!/bin/bash | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root" | |
exit 1 | |
fi | |
function get_hostname() { | |
read -p "Enter hostname: " hostname | |
if [ -z "$hostname" ]; then |
#!/usr/env/perl | |
use strict; | |
use warnings; | |
use Net::Netmask; | |
use Regexp::Assemble::Compressed; | |
print "Enter the filename to varnishize: "; | |
my $filename = <STDIN>; |
I hereby claim:
To claim this, I am signing this object:
diff --git a/.htaccess b/.htaccess | |
index 7ccb6a2..fa16812 100644 | |
--- a/.htaccess | |
+++ b/.htaccess | |
@@ -56,6 +56,13 @@ DirectoryIndex index.php index.html index.htm | |
<IfModule mod_rewrite.c> | |
RewriteEngine on | |
+ # Redirect HTTP to HTTPS on Acquia hosted sites. | |
+ RewriteCond %{HTTPS} off |
<?php | |
/** | |
* A Phing task to run Behat commands. | |
*/ | |
require_once 'phing/Task.php'; | |
/** | |
* A Behat task. Runs behavior-driven development tests against a codebase. | |
* |
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use HTTP::Request; | |
use LWP::UserAgent; | |
use Regexp::Common qw /net/; | |
use JSON; | |
use Socket; |
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use HTTP::Request; | |
use LWP::UserAgent; | |
use Data::Dumper; | |
my $source = 'http://ftp.drupal.org/files/projects/<PROJECT LINK>'; | |
#my $agent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.134 Safari/537.36"'; |
[main] | |
# The Puppet log directory. | |
# The default value is '$vardir/log'. | |
logdir = /var/log/puppet | |
# Where Puppet PID files are kept. | |
# The default value is '$vardir/run'. | |
rundir = /var/run/puppet | |
# Where SSL certificates are kept. |