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 the blank email report
|
||||||
create_tmp_email
|
create_tmp_email
|
||||||
#
|
#
|
||||||
if test -f $BU_CONF ; then
|
if test -f $MAIN_DIR/$BU_CONF ; then
|
||||||
verbose "Reading default in $BU_CONF"
|
verbose "Reading default in $MAIN_DIR/$BU_CONF"
|
||||||
source $BU_CONF
|
source $MAIN_DIR/$BU_CONF
|
||||||
else
|
else
|
||||||
error "Couldn't find or read $BU_CONF"
|
message "ERROR: Couldn't find or read $MAIN_DIR/$BU_CONF"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
#
|
#
|
||||||
|
|
|
@ -6,7 +6,7 @@ BU_DIR=/home/data/mastodon/backup
|
||||||
# Docker Compose details
|
# Docker Compose details
|
||||||
#
|
#
|
||||||
# dir containing the docker-compose.yml
|
# dir containing the docker-compose.yml
|
||||||
DC_DIR=/home/docker/mastodon-2.0.0
|
DC_DIR=/home/docker/mastodon
|
||||||
# name of the database container
|
# name of the database container
|
||||||
DC_CONTAINER=postgres
|
DC_CONTAINER=postgres
|
||||||
# Command to dump the relevant database(s)
|
# Command to dump the relevant database(s)
|
||||||
|
|
Loading…
Reference in a new issue