mirror of
https://github.com/ViViDboarder/hassio-addon-rclone.git
synced 2024-11-05 21:06:37 +00:00
22 lines
734 B
Bash
Executable File
22 lines
734 B
Bash
Executable File
#! /usr/bin/with-contenv bashio
|
|
|
|
bashio::log.info "Configuring rclone..."
|
|
|
|
bashio::config.require.username 'credentials.username'
|
|
bashio::config.require.password 'credentials.password'
|
|
|
|
bashio::config.suggest.true 'tls.ssl'
|
|
bashio::config.require.ssl 'tls' 'tls.certfile' 'tls.keyfile'
|
|
|
|
SYNC_COMMAND=$(bashio::config 'sync_command')
|
|
DESTINATION=$(bashio::config 'destination')
|
|
|
|
USERNAME=$(bashio::config 'credentials.username')
|
|
PASSWORD=$(bashio::config 'credentials.password')
|
|
FILTER='{"IncludeRule": ["*.tar"]}'
|
|
|
|
command="rclone rc --user \"$USERNAME\" --pass \"$PASSWORD\" sync/$SYNC_COMMAND srcFs=/backup dstFs=$DESTINATION _async=true _filter='$FILTER'"
|
|
|
|
echo "$(bashio::config 'cron') $command" >> /etc/crontabs/root
|
|
crontab -l
|