39 lines
1.1 KiB
Plaintext
Executable File
39 lines
1.1 KiB
Plaintext
Executable File
#!/command/with-contenv bashio
|
|
|
|
if bashio::config.has_value 'autofind'; then
|
|
autofind=($(bashio::config 'autofind'))
|
|
bashio::log.info "Set AUTOFIND hub to ${autofind}"
|
|
if [ "${autofind}" = "true" ]; then
|
|
/usr/bin/vhconfig_edit General AutoFind 1
|
|
else
|
|
/usr/bin/vhconfig_edit General AutoFind 0
|
|
fi
|
|
fi
|
|
|
|
if bashio::config.has_value 'clientid'; then
|
|
clientid=($(bashio::config 'clientid'))
|
|
bashio::log.info "Set ClientId to ${clientid}"
|
|
/usr/bin/vhconfig_edit General ClientId ${clientid}
|
|
fi
|
|
|
|
if bashio::config.has_value 'manualhub'; then
|
|
manualhub=($(bashio::config 'manualhub'))
|
|
bashio::log.info "Set HUB to ${manualhub}"
|
|
/usr/bin/vhclient -t "MANUAL HUB ADD,${manualhub}"
|
|
fi
|
|
|
|
if bashio::config.has_value 'autouse'; then
|
|
autouse=($(bashio::config 'autouse'))
|
|
bashio::log.info "Set AUTOUSE all devices to ${autouse}"
|
|
if [ "${autouse}" = "true" ]; then
|
|
bashio::log.info "AUTO USE ALL"
|
|
/usr/bin/vhclient -t "AUTO USE ALL"
|
|
else
|
|
bashio::log.info "AUTO USE CLEAR ALL"
|
|
/usr/bin/vhclient -t "AUTO USE CLEAR ALL"
|
|
#sleep 5s
|
|
bashio::log.info "STOP USING ALL LOCAL"
|
|
/usr/bin/vhclient -t "STOP USING ALL LOCAL"
|
|
fi
|
|
fi
|