summary refs log tree commit diff
path: root/ssh-command.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ssh-command.sh')
-rw-r--r--ssh-command.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/ssh-command.sh b/ssh-command.sh
new file mode 100644
index 0000000..333ca44
--- /dev/null
+++ b/ssh-command.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+set -e -u
+
+set $SSH_ORIGINAL_COMMAND
+case $1 in
+    view) exec view public/${2##*/} ;;
+    ingest) exec ingest private/${2##*/} ;;
+    *) exec view public/${1##*/} ;;
+esac