Update example config with log dir creation info
This commit is contained in:
parent
d3c21028b0
commit
bdcb1bffd7
1 changed files with 4 additions and 1 deletions
|
|
@ -233,13 +233,16 @@ CLEAN_UP_VARIABLE="4"
|
||||||
#REMOVE_INCREMENTALS_OLDER_THAN="4"
|
#REMOVE_INCREMENTALS_OLDER_THAN="4"
|
||||||
|
|
||||||
# LOGFILE INFORMATION DIRECTORY
|
# LOGFILE INFORMATION DIRECTORY
|
||||||
# Provide directory for logfile, ownership of logfile, and verbosity level.
|
# Provide directory for logfile, ownership of logfile & directory, and verbosity level.
|
||||||
# I run this script as root, but save the log files under my user name --
|
# I run this script as root, but save the log files under my user name --
|
||||||
# just makes it easier for me to read them and delete them as needed.
|
# just makes it easier for me to read them and delete them as needed.
|
||||||
|
|
||||||
LOGDIR="/home/foobar_user_name/logs/test2/"
|
LOGDIR="/home/foobar_user_name/logs/test2/"
|
||||||
LOG_FILE="duplicity-`date +%Y-%m-%d_%H-%M`.txt"
|
LOG_FILE="duplicity-`date +%Y-%m-%d_%H-%M`.txt"
|
||||||
LOG_FILE_OWNER="foobar_user_name:foobar_user_name"
|
LOG_FILE_OWNER="foobar_user_name:foobar_user_name"
|
||||||
|
# Note that if the configured LOGDIR does not exist it will be created
|
||||||
|
# and its owner:group set to that of the configured LOG_FILE_OWNER.
|
||||||
|
# If the configured LOGDIR already exists no change to owner:group is attempted.
|
||||||
#REMOVE_LOGS_OLDER_THAN='30' # (days) uncomment to activate
|
#REMOVE_LOGS_OLDER_THAN='30' # (days) uncomment to activate
|
||||||
VERBOSITY="-v3"
|
VERBOSITY="-v3"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue