#!/usr/bin/with-contenv bashio # shellcheck shell=bash ################# # Create folder # ################# 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 if [ -d /opt/scrutiny/influxdb ]; then rm -r /opt/scrutiny/influxdb; fi ln -s "$DATABASELOCATION"/config /opt/scrutiny ln -s "$DATABASELOCATION"/influxdb /opt/scrutiny ############################### # Migrating previous database # ############################### if [ -f /data/scrutiny.db ]; then bashio::log.warning "Previous database detected, migration will start. Backup stored in /share/scrutiny.db.bak" cp /data/scrutiny.db /share/scrutiny.db.bak mv /data/scrutiny.db "$DATABASELOCATION"/config/ fi ###### # TZ # ###### # Align timezone with options if bashio::config.has_value "TZ"; then TZ="$(bashio::config 'TZ')" bashio::log.info "Timezone : $TZ" sed -i "1a export TZ=$TZ" /etc/cont-init.d/10-timezone fi ################ # CRON OPTIONS # ################ # Align update with options FREQUENCY="$(bashio::config 'Updates')" bashio::log.info "$FREQUENCY updates" case "$FREQUENCY" in "Hourly") sed -i "/customize the cron schedule/a export COLLECTOR_CRON_SCHEDULE=\"0 * * * *\"" /etc/cont-init.d/50-cron-config ;; "Daily") sed -i "/customize the cron schedule/a export COLLECTOR_CRON_SCHEDULE=\"0 0 * * *\"" /etc/cont-init.d/50-cron-config ;; "Weekly") sed -i "/customize the cron schedule/a export COLLECTOR_CRON_SCHEDULE=\"0 0 * * 0\"" /etc/cont-init.d/50-cron-config ;; esac ############################ # SMARTCTL COMMAND OPTIONS # ############################ # Alignt with smartctl commands options if bashio::config.has_value "SMARTCTL_COMMAND_DEVICE_TYPE"; then device_type="$(bashio::config 'SMARTCTL_COMMAND_DEVICE_TYPE')" if ! bashio::config.has_value "SMARTCTL_MEGARAID_DISK_NUM"; then megaraid_disk_num="$(bashio::config 'SMARTCTL_MEGARAID_DISK_NUM')" { echo "commands:" echo " metrics_smartctl_bin: '/usr/sbin/smartctl'" echo " metrics_scan_args: '--scan --json --dev ${device_type}'" echo " metrics_info_args: '--info --json --dev ${device_type}'" echo " metrics_smart_args: '--xall --json --dev ${device_type}'" } > /opt/scrutiny/config/collector.yaml else { echo "commands:" echo " metrics_smartctl_bin: '/usr/sbin/smartctl'" echo " metrics_scan_args: '--scan --json --dev ${device_type},${megaraid_disk_num}'" echo " metrics_info_args: '--info --json --dev ${device_type},${megaraid_disk_num}'" echo " metrics_smart_args: '--xall --json --dev ${device_type},${megaraid_disk_num}'" } > /opt/scrutiny/config/collector.yaml fi fi