9 lines
100 B
Bash
9 lines
100 B
Bash
#!/usr/bin/env bash
|
|
|
|
|
|
if [[ "$1" == "start" ]]; then
|
|
/usr/bin/restic "$@"
|
|
else
|
|
exec "$@"
|
|
fi
|