From 0012834a8a905055cfcb77efb80f1e30c25648be Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 24 Nov 2022 03:55:37 +0100 Subject: [PATCH] Update 01-configuration.sh --- .../etc/cont-init.d/01-configuration.sh | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/scrutiny/rootfs/etc/cont-init.d/01-configuration.sh b/scrutiny/rootfs/etc/cont-init.d/01-configuration.sh index fec55ecc0..7d328136d 100644 --- a/scrutiny/rootfs/etc/cont-init.d/01-configuration.sh +++ b/scrutiny/rootfs/etc/cont-init.d/01-configuration.sh @@ -1,12 +1,24 @@ #!/usr/bin/with-contenv bashio # shellcheck shell=bash +######################### +# EXPOSE COLLECTOR.YAML # +######################### + +if bashio::config.true "expose_collector"; then + bashio::log.info "collector.yaml exposed in /share/scrutiny. It will only be accessible if the addon is running" + mkdir -p /share/scrutiny + cp -rnf /opt/scrutiny/config/collector.yaml /share/scrutiny/collector.yaml + ln -s /share/scrutiny/collector.yaml /opt/scrutiny/config + chmod 777 -R /share/scrutiny +fi + ################# # Create folder # ################# -echo "Updating folders structure" DATABASELOCATION="/data" +echo "Updating folders structure" mkdir -p "$DATABASELOCATION"/config mkdir -p "$DATABASELOCATION"/influxdb if [ -d /opt/scrutiny/config ]; then rm -r /opt/scrutiny/config; fi @@ -83,12 +95,3 @@ if bashio::config.has_value "SMARTCTL_COMMAND_DEVICE_TYPE"; then } > /opt/scrutiny/config/collector.yaml fi fi - -######################### -# EXPOSE COLLECTOR.YAML # -######################### - -if bashio::config.true "expose_config"; then - #bashio::log.info "collector.yaml exposed in /share. It will only be accessible if the addon is running" - #ln -s /share/collector.yaml "$DATABASELOCATION"/config/collector.yaml -fi