troubleshooting

This commit is contained in:
2021-07-20 10:49:44 -04:00
parent 91e5fce3b6
commit 01392b2aee
2 changed files with 10 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "duplicacy",
"version": "20210720.6",
"version": "20210720.7",
"slug": "duplicacy",
"description": "Duplicacy backup",
"url": "https://git.johnhgaunt.com/jgaunt/hassio-addons/src/branch/master/duplicacy",

View File

@@ -12,7 +12,15 @@ SSH_PORT=$(bashio::config 'ssh_port')
BACKUP_SERVER_PATH=$(bashio::config 'path')
FILTERS=$(bashio::config 'filters')
DAYS_TO_KEEP=$(bashio::config 'days_to_keep')
bashio::log.info "BACKUP_ID set to ${BACKUP_ID}. Should be set to $(bashio::config 'backupID')"
bashio::log.debug "BACKUP_ID set to ${BACKUP_ID}. Should be set to $(bashio::config 'backupID')"
bashio::log.debug "PROTOCOL set to ${PROTOCOL}. Should be set to $(bashio::config 'protocol')"
bashio::log.debug "SSH_USERNAME set to ${SSH_USERNAME}. Should be set to $(bashio::config 'ssh_username')"
bashio::log.debug "SSH_PASSWORD set to ${SSH_PASSWORD}. Should be set to $(bashio::config 'ssh_password')"
bashio::log.debug "BACKUP_SERVER set to ${BACKUP_SERVER}. Should be set to $(bashio::config 'server')"
bashio::log.debug "SSH_PORT set to ${SSH_PORT}. Should be set to $(bashio::config 'ssh_port')"
bashio::log.debug "BACKUP_SERVER_PATH set to ${BACKUP_SERVER_PATH}. Should be set to $(bashio::config 'path')"
bashio::log.debug "FILTERS set to ${FILTERS}. Should be set to $(bashio::config 'filters')"
bashio::log.debug "DAYS_TO_KEEP set to ${DAYS_TO_KEEP}. Should be set to $(bashio::config 'days_to_keep')"
# edit the /.duplicacy/preferences file
bashio::log.info "Creating /.duplicacy preferences file..."