diff --git a/duplicacy/config.json b/duplicacy/config.json index 4d8d44d..c3fad7a 100644 --- a/duplicacy/config.json +++ b/duplicacy/config.json @@ -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", diff --git a/duplicacy/run.sh b/duplicacy/run.sh index 92681e0..45c8c6b 100644 --- a/duplicacy/run.sh +++ b/duplicacy/run.sh @@ -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..."