From d00f8fb1791e6f412d4a8898b53cdbe3cac20daa Mon Sep 17 00:00:00 2001 From: "quentin@aristote.fr" Date: Sun, 25 Jan 2026 20:19:01 +0100 Subject: git: add shell-commands --- .../services/git/shell-commands/repo/src/lib/check-realpath.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 config/services/git/shell-commands/repo/src/lib/check-realpath.sh (limited to 'config/services/git/shell-commands/repo/src/lib/check-realpath.sh') diff --git a/config/services/git/shell-commands/repo/src/lib/check-realpath.sh b/config/services/git/shell-commands/repo/src/lib/check-realpath.sh new file mode 100644 index 0000000..c344bd2 --- /dev/null +++ b/config/services/git/shell-commands/repo/src/lib/check-realpath.sh @@ -0,0 +1,9 @@ +check-realpath() { + local path="$1" + if [[ ! -e "$path" ]] \ + || [[ ! "$path" == /srv/git/* ]] + then + red "Forbidden path." + exit 2 + fi +} -- cgit v1.2.3