restic/entrypoint.sh
2023-04-12 16:47:01 +02:00

9 lines
92 B
Bash
Executable File

#!/bin/bash
#
if [[ "$1" == "bash" ]]; then
exec /usr/bin/bash
else
restic "$@"
fi