I hereby claim:
- I am jmara on github.
- I am jmara (https://keybase.io/jmara) on keybase.
- I have a public key ASCMoX95KuWI-ZhFqWia4hn7Iz1UZPnUhTfmlcae8sHFOQo
To claim this, I am signing this object:
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: varnishncsa | |
# Required-Start: $local_fs $remote_fs $network | |
# Required-Stop: $local_fs $remote_fs $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Start HTTP accelerator log daemon | |
# Description: This script provides logging for varnish |
<?php | |
// quick and dirty argument parsing | |
foreach ($argv as $arg) { | |
if ($arg == '-f') { | |
define('FOLLOW', true); | |
} | |
if ($arg == '-h') { | |
define('HISTOGRAM', true); | |
} |
import javax.net.ssl.SSLSocket; | |
import javax.net.ssl.SSLSocketFactory; | |
import java.io.*; | |
/** Establish a SSL connection to a host and port, writes a byte and | |
* prints the response. See | |
* http://confluence.atlassian.com/display/JIRA/Connecting+to+SSL+services | |
*/ | |
public class SSLPoke { | |
public static void main(String[] args) { |
import hudson.util.RemotingDiagnostics; | |
script = 'def proc = "ls -1 /media".execute(); proc.waitFor(); println proc.in.text'; | |
for (slave in Jenkins.instance.slaves) { | |
println slave.name; | |
try { | |
println RemotingDiagnostics.executeGroovy(script, slave.getChannel()); | |
} catch (all) { | |
all.printStackTrace(); |
I hereby claim:
To claim this, I am signing this object:
Use folowing steps to repackage dep package: | |
1: Extract deb package | |
# dpkg-deb -x <package.deb> <dir> | |
2: Extract control-information from a package | |
# dpkg-deb -e <package.deb> <dir/DEBIAN> | |
3. After completed to make changes to the package, repack the deb | |
# dpkg-deb -b <dir> <new-package.deb> |
varnishtest "Long vcl/backend names" | |
server s1 { | |
rxreq | |
txresp -status 301 -hdr "Location: http://bar.example.com/bar" | |
expect req.http.host == "foo.example.com" | |
expect req.url == "/foo" | |
} -start |