Check if config-file exists

This commit is contained in:
Milan Meduna 2020-11-05 09:27:42 +01:00
parent 2a56c7c761
commit 5838eedf1e
1 changed files with 7 additions and 0 deletions

View File

@ -1,4 +1,11 @@
#!/bin/bash
if [[ ! -f "$1" ]]
then
echo "Config file not exists!"
exit 1
fi
if [ -z "$2" ]
then
lock_variable="/var/lock/zfs-backup-mm"