mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-04-11 18:09:55 +02:00
26 lines
1.0 KiB
Plaintext
26 lines
1.0 KiB
Plaintext
#!/usr/bin/with-contenv bashio
|
|
|
|
#clean HTTPS data
|
|
sed -i '/HTTPS/d' /config/qBittorrent/qBittorrent.conf
|
|
|
|
bashio::config.require.ssl
|
|
if bashio::config.true 'ssl'; then
|
|
bashio::log.info "ssl enabled. If webui don't work, disable ssl or check your certificate paths"
|
|
#set variables
|
|
CERTFILE=$(bashio::config 'certfile')
|
|
KEYFILE=$(bashio::config 'keyfile')
|
|
#Check if certificates exist
|
|
#if [ bashio::fs.file_exists "/ssl/$CERTFILE" ] && [ bashio::fs.file_exists "/ssl/$KEYFILE" ]; then
|
|
cd /config/qBittorrent
|
|
LINE=$(sed -n '/Preferences/=' qBittorrent.conf)
|
|
LINE=$[LINE + 1]
|
|
sed -i "$LINE i\WebUI\\\HTTPS\\\Enabled=True" qBittorrent.conf
|
|
sed -i "$LINE i\WebUI\\\HTTPS\\\CertificatePath=/ssl/$CERTFILE" qBittorrent.conf
|
|
sed -i "$LINE i\WebUI\\\HTTPS\\\KeyPath=/ssl/$KEYFILE" qBittorrent.conf
|
|
#else bashio::log.error "Certificates not found in $CERTFILE and/or $KEYFILE"
|
|
#fi
|
|
fi
|
|
|
|
bashio::log.info "Default username/password : admin/adminadmin"
|
|
bashio::log.info "Configuration can be found in /config/qBittorrent"
|