From: root Date: Tue, 5 May 2009 16:20:22 +0000 (+0200) Subject: Merge commit 'origin/template' into login X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;h=0fe1f1646a805dc2db2f80bf326516607884a9b1;hp=3efd2f3ff6b490e947d45ec28925f35888ec6896;p=matthijs%2Fservers%2Fdrsnuggles.git Merge commit 'origin/template' into login * commit 'origin/template': rsyslog: Use another format for forwarding messages. ssh: Disable changing of the oom_adj value. ssh: Add default initscript configuration. --- diff --git a/etc/hostname b/etc/hostname new file mode 100644 index 0000000..b4fb918 --- /dev/null +++ b/etc/hostname @@ -0,0 +1 @@ +login.drsnuggles.stderr.nl diff --git a/etc/mailname b/etc/mailname new file mode 100644 index 0000000..b4fb918 --- /dev/null +++ b/etc/mailname @@ -0,0 +1 @@ +login.drsnuggles.stderr.nl diff --git a/usr/local/bin/git-prepend-base b/usr/local/bin/git-prepend-base new file mode 100755 index 0000000..6b524cb --- /dev/null +++ b/usr/local/bin/git-prepend-base @@ -0,0 +1,28 @@ +#!/bin/sh + +# This script prepends BASE_PATH to any arguments that are not options (start +# with --) and do not start with BASE_PATH already. +# It then executes its equivalent in /usr/bin with those updated arguments. +# +# This script is meant to provide a base path for accessing git repositories +# through ssh. This is similar to running git-daemon(1) with --base-path and +# --base-path-relaxed. + +BASE_PATH='/data/vcs/git' + +# We keep an array of arguments, so we can handle quoting an spaces in +# arguments properly. +ARGS=() +i=0 +until [ "$#" -eq 0 ] +do + if ! echo $1 | egrep "^(--|$BASE_PATH)" &>/dev/null; then + ARGS[$i]="$BASE_PATH/$1" + else + ARGS[$i]="$1" + fi + ((i++)) + shift +done + +exec /usr/bin/`basename $0` "${ARGS[@]}" diff --git a/usr/local/bin/git-receive-pack b/usr/local/bin/git-receive-pack new file mode 120000 index 0000000..f0c4399 --- /dev/null +++ b/usr/local/bin/git-receive-pack @@ -0,0 +1 @@ +git-prepend-base \ No newline at end of file diff --git a/usr/local/bin/git-upload-pack b/usr/local/bin/git-upload-pack new file mode 120000 index 0000000..f0c4399 --- /dev/null +++ b/usr/local/bin/git-upload-pack @@ -0,0 +1 @@ +git-prepend-base \ No newline at end of file