pre-req: seafile data dir

This commit is contained in:
Asif Bacchus 2019-05-19 00:37:43 -06:00
parent 1bd6ff7856
commit f854e31fd6
1 changed files with 6 additions and 6 deletions

View File

@ -439,7 +439,7 @@ fi
checkExist ff "$borgDetails"
checkResult="$?"
if [ "$checkResult" = "1" ]; then
# sqlDetails file cannot be found
# borgDetails file cannot be found
echo -e "\n${err}The file containing your borgbackup details does not" \
"exist (-b parameter)${normal}\n"
exit 1
@ -447,13 +447,13 @@ fi
## Check Seafile data directory
# Ensure Seafile data directory is provided
if [ -z "$ncDataDir" ]; then
if [ -z "$dataDir" ]; then
echo -e "\n${err}The Seafile data directory must be specified" \
"(-d parameter)${normal}\n"
exit 1
# Ensure Seafile data directory exists
elif [ -n "$ncDataDir" ]; then
checkExist fd "$ncDataDir"
else
checkExist fd "$dataDir"
checkResult="$?"
if [ "$checkResult" = "1" ]; then
# Specified Seafile data directory could not be found
@ -743,7 +743,7 @@ if [ -z "$borgExclude" ]; then
"${normal}" >> "$logFile"
borg --show-rc create ${borgCreateParams} ::`date +%Y-%m-%d_%H%M%S` \
"${xtraFiles[@]}" \
"${sqlDumpDir}" "${ncDataDir}" \
"${sqlDumpDir}" "${dataDir}" \
2>> "$logFile"
else
# borgExclude is not empty
@ -752,7 +752,7 @@ else
borg --show-rc create ${borgCreateParams} --exclude-from "${borgExclude}" \
::`date +%Y-%m-%d_%H%M%S` \
"${xtraFiles[@]}" \
"${sqlDumpDir}" "${ncDataDir}" \
"${sqlDumpDir}" "${dataDir}" \
2>> "$logFile"
fi