fixed bad config file path and reference to missing function
This commit is contained in:
parent
794ca288a5
commit
61941eed22
2 changed files with 5 additions and 5 deletions
|
@ -183,11 +183,11 @@ done
|
|||
# create the blank email report
|
||||
create_tmp_email
|
||||
#
|
||||
if test -f $BU_CONF ; then
|
||||
verbose "Reading default in $BU_CONF"
|
||||
source $BU_CONF
|
||||
if test -f $MAIN_DIR/$BU_CONF ; then
|
||||
verbose "Reading default in $MAIN_DIR/$BU_CONF"
|
||||
source $MAIN_DIR/$BU_CONF
|
||||
else
|
||||
error "Couldn't find or read $BU_CONF"
|
||||
message "ERROR: Couldn't find or read $MAIN_DIR/$BU_CONF"
|
||||
exit 1
|
||||
fi
|
||||
#
|
||||
|
|
|
@ -6,7 +6,7 @@ BU_DIR=/home/data/mastodon/backup
|
|||
# Docker Compose details
|
||||
#
|
||||
# dir containing the docker-compose.yml
|
||||
DC_DIR=/home/docker/mastodon-2.0.0
|
||||
DC_DIR=/home/docker/mastodon
|
||||
# name of the database container
|
||||
DC_CONTAINER=postgres
|
||||
# Command to dump the relevant database(s)
|
||||
|
|
Loading…
Reference in a new issue