Compare commits

..

3 Commits

Author SHA1 Message Date
Asif Bacchus
a2b462c202 Added info tags for borg processes 2018-10-18 00:26:50 -06:00
Asif Bacchus
646d4976fd Corrected typo in 503 comments 2018-10-18 00:23:01 -06:00
Asif Bacchus
34bae9d580 Added logfile location info tag 2018-10-18 00:19:56 -06:00

View File

@ -420,8 +420,10 @@ fi
### Log start of script operations ### Log start of script operations
echo -e "${note}${stamp}-- Start $scriptName execution ---${normal}" \ echo -e "${note}${stamp}--- Start $scriptName execution ---${normal}" \
>> "$logFile" >> "$logFile"
echo -e "${info}${stamp}-- [INFO] Log file located at ${lit}${logFile}${info}" \
"--${normal}" >> "$logFile"
### Export logFile variable for use by Borg ### Export logFile variable for use by Borg
@ -435,7 +437,7 @@ echo -e "${info}${stamp} -- [INFO] mySQL dump file will be stored" \
"at: ${lit}${sqlDumpDir}/${sqlDumpFile}${normal}" >> "$logFile" "at: ${lit}${sqlDumpDir}/${sqlDumpFile}${normal}" >> "$logFile"
### 503 error page: If you dont' plan on using the auto-copied 503 then comment ### 503 error page: If you don't plan on using the auto-copied 503 then comment
### this entire section starting with '--- Begin 503 section ---' until ### this entire section starting with '--- Begin 503 section ---' until
### '--- End 503 section ---' to suppress generated warnings ### '--- End 503 section ---' to suppress generated warnings
@ -692,16 +694,16 @@ export TMPDIR="${BORG_BASE_DIR}/tmp"
# commandline depends on whether borgExclude is empty or not # commandline depends on whether borgExclude is empty or not
if [ -z "$borgExclude" ]; then if [ -z "$borgExclude" ]; then
# borgExclude is empty # borgExclude is empty
echo -e "${bold}${op}${stamp} Executing borg without exclusions${normal}" \ echo -e "${info}${stamp} --[INFO] Executing borg without exclusions --" \
>> "$logFile" "${normal}" >> "$logFile"
borg --show-rc create ${borgCreateParams} ::`date +%Y-%m-%d_%H%M%S` \ borg --show-rc create ${borgCreateParams} ::`date +%Y-%m-%d_%H%M%S` \
${xtraFiles[@]} \ ${xtraFiles[@]} \
${sqlDumpDir} ${ncDataDir} \ ${sqlDumpDir} ${ncDataDir} \
2>> "$logFile" 2>> "$logFile"
else else
# borgExclude is not empty # borgExclude is not empty
echo -e "${bold}${op}${stamp} Executing borg with exclusions${normal}" \ echo -e "${info}${stamp} --[INFO] Executing borg with exclusions --" \
>> "$logFile" "${normal}" >> "$logFile"
borg --show-rc create ${borgCreateParams} --exclude-from ${borgExclude} \ borg --show-rc create ${borgCreateParams} --exclude-from ${borgExclude} \
::`date +%Y-%m-%d_%H%M%S` \ ::`date +%Y-%m-%d_%H%M%S` \
${xtraFiles[@]} \ ${xtraFiles[@]} \
@ -728,8 +730,8 @@ fi
# command depends on whether or not parameters have been defined # command depends on whether or not parameters have been defined
if [ -n "$borgPrune" ]; then if [ -n "$borgPrune" ]; then
# parameters defined # parameters defined
echo -e "${bold}${op}${stamp} Executing borg prune operation${normal}" \ echo -e "${info}${stamp} --[INFO] Executing borg prune operation --" \
>> "$logFile" "${normal}" >> "$logFile"
borg prune --show-rc -v ${borgPruneParams} ${borgPrune} \ borg prune --show-rc -v ${borgPruneParams} ${borgPrune} \
2>> "$logFile" 2>> "$logFile"
# check return-status # check return-status