mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-18 10:28:17 +01:00
53 lines
2.1 KiB
Bash
Executable File
53 lines
2.1 KiB
Bash
Executable File
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
|
|
exit 0
|
|
|
|
slug=jellyfin
|
|
LOCATION="$(bashio::config 'data_location')"
|
|
|
|
if [[ "$LOCATION" == "/share/jellyfin" ]] && [ ! -d /share/jellyfin ] && [ -d /homeassistant/addons_config/jellyfin ]; then
|
|
mkdir -p /share/jellyfin
|
|
if [ -d /homeassistant/addons_config/jellyfin ]; then
|
|
bashio::log.warning "Data folder was /config/addons_config/jellyfin, it is migrated to /share/data. The previous folder is renamed to _migrated"
|
|
cp -rn /homeassistant/addons_config/jellyfin/* /share/jellyfin/ || true
|
|
mv /homeassistant/addons_config/jellyfin /homeassistant/addons_config/jellyfin_migrated
|
|
fi
|
|
fi
|
|
|
|
# Migration to new /config logic
|
|
if [[ "$LOCATION" == "/config/addons_config/"* ]]; then
|
|
bashio::log.warning "Data folder was $LOCATION, it is migrated to /config/data. The previous folder is renamed to _migrated"
|
|
LOCATION="${LOCATION/config/homeassistant}"
|
|
mkdir -p /config/data
|
|
if [ -d "$LOCATION" ]; then
|
|
cp -rn "$LOCATION"/* /config/data/
|
|
mv "$LOCATION" "$LOCATION"_migrated
|
|
fi
|
|
bashio::addon.option "data_location" "/config/data"
|
|
fi
|
|
|
|
# Migrate old folder
|
|
if [[ -d "/homeassistant/addons_config/jellyfin" ]]; then
|
|
bashio::log.warning "Data folder was found in /config/addons_config/jellyfin, it is migrated to $LOCATION. The previous folder is renamed to _migrated"
|
|
mkdir -p "$LOCATION"
|
|
cp -rn "/homeassistant/addons_config/jellyfin/*" "$LOCATION"/
|
|
mv /homeassistant/addons_config/jellyfin /homeassistant/addons_config/jellyfin_migrated
|
|
fi
|
|
|
|
# Correct metadata path
|
|
grep -rl "/config/addons_config/jellyfin" "$LOCATION" --include="*.xml" | xargs sed -i "s|/config/addons_config/jellyfin|$LOCATION|g" || true
|
|
|
|
# Migrate autoscripts
|
|
if [ -f "/homeassistant/addons_autoscripts/$slug.sh" ]; then
|
|
bashio::log.warning "Migrating autoscript"
|
|
mv /homeassistant/addons_autoscripts/$slug.sh /config/ || true
|
|
fi
|
|
|
|
# Migrate config.yaml
|
|
if [ -f "/homeassistant/addons_config/$slug/config.yaml" ]; then
|
|
bashio::log.warning "Migrating config.yaml"
|
|
mv /homeassistant/addons_config/$slug/config.yaml /config/ || true
|
|
fi
|