From 2310f6c0d02c8dd9f2085a04f5dd410f691da79e Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sat, 20 Mar 2010 12:14:51 +0100 Subject: Add (very experimental) caretaker-shell --- examples/caretaker-shell | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 examples/caretaker-shell (limited to 'examples') diff --git a/examples/caretaker-shell b/examples/caretaker-shell new file mode 100755 index 0000000..ce59a90 --- /dev/null +++ b/examples/caretaker-shell @@ -0,0 +1,23 @@ +#!/usr/bin/env zsh + +# Change this to your package root +PKG_ROOT='/home/derf/var/packages_root' + +# Change this to the location of your pkglist script (if non-default) +PKG_LIST=${PKG_ROOT}/pkglist + +args=(${(z)SSH_ORIGINAL_COMMAND}) + +if [[ \ + ( \ + $args[1] == ${PKG_LIST} && \ + $args[2] == ${PKG_ROOT} \ + ) || ( \ + $args[1] == 'git-'(upload|receive)'-pack' && \ + $args[2] != *'../'* && \ + $args[2] == \'${PKG_ROOT}/*\' \ + ) \ +]] { + args[2]=${args[2]//\'} + ${args} +} -- cgit v1.2.3