many changes

added multiple tasks, files, configurations
This commit is contained in:
rene
2022-02-17 16:14:15 +01:00
parent b94b707e76
commit 7d5a913b6b
15 changed files with 1120 additions and 9 deletions

View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
case "${SSH_ORIGINALCOMMAND}" in
*\&*)
echo "Rejected 1"
;;
*\;*)
echo "Rejected 2"
;;
rsync*)
${SSH_ORIGINAL_COMMAND} # no quoting here!
;;
*true*)
echo "${SSH_ORIGINAL_COMMAND}"
;;
*)
echo "Rejected 3"
;;
esac