mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-31 08:57:42 +01:00
62 lines
1.9 KiB
Bash
62 lines
1.9 KiB
Bash
#!/usr/bin/env bashio
|
|
bashio::log.info "Starting addon..."
|
|
|
|
#################
|
|
# NGINX SETTING #
|
|
#################
|
|
declare port
|
|
declare certfile
|
|
declare ingress_interface
|
|
declare ingress_port
|
|
declare keyfile
|
|
|
|
port=$(bashio::addon.port 80)
|
|
if bashio::var.has_value "${port}"; then
|
|
bashio::config.require.ssl
|
|
|
|
if bashio::config.true 'ssl'; then
|
|
certfile=$(bashio::config 'certfile')
|
|
keyfile=$(bashio::config 'keyfile')
|
|
|
|
mv /etc/nginx/servers/direct-ssl.disabled /etc/nginx/servers/direct.conf
|
|
sed -i "s/%%certfile%%/${certfile}/g" /etc/nginx/servers/direct.conf
|
|
sed -i "s/%%keyfile%%/${keyfile}/g" /etc/nginx/servers/direct.conf
|
|
|
|
else
|
|
mv /etc/nginx/servers/direct.disabled /etc/nginx/servers/direct.conf
|
|
fi
|
|
fi
|
|
|
|
ingress_port=$(bashio::addon.ingress_port)
|
|
ingress_interface=$(bashio::addon.ip_address)
|
|
sed -i "s/%%port%%/${ingress_port}/g" /etc/nginx/servers/ingress.conf
|
|
sed -i "s/%%interface%%/${ingress_interface}/g" /etc/nginx/servers/ingress.conf
|
|
|
|
################
|
|
# JOAL SETTING #
|
|
################
|
|
|
|
declare TOKEN
|
|
TOKEN=$(bashio::config 'secret_token')
|
|
|
|
mv -f /data/joal/config.json / || true
|
|
|
|
curl -s -S -L -o /tmp/joal.tar.gz "https://github.com/anthonyraymond/joal/releases/download/2.1.24/joal.tar.gz" >/dev/null
|
|
mkdir -p /data/joal
|
|
tar zxvf /tmp/joal.tar.gz -C /data/joal >/dev/null
|
|
chown -R $(id -u):$(id -g) /data/joal
|
|
rm /data/joal/jack-of*
|
|
bashio::log.info "... Joal updated"
|
|
mv -f /config.json /data/joal/ || true
|
|
|
|
###############
|
|
# LAUNCH APPS #
|
|
###############
|
|
|
|
nohup java -jar /joal/joal.jar --joal-conf=/data/joal --spring.main.web-environment=true --server.port="8081" --joal.ui.path.prefix="joal" --joal.ui.secret-token=$TOKEN \
|
|
& bashio::log.info "... Joal started with secret token $TOKEN"
|
|
# Wait for transmission to become available
|
|
bashio::net.wait_for 8081 localhost 900
|
|
bashio::log.info "... starting NGinx"
|
|
exec nginx || bashio::log.fatal "... Nginx not started, only access through webui available"
|