Files
hassio-addons/nextcloud/rootfs/etc/cont-init.d/00-migrate_files.sh
2024-11-22 13:58:40 +00:00

15 lines
635 B
Bash
Executable File

#!/bin/bash
# Migrate files for new config location
slug="nextcloud-ocr"
if [ -f "/homeassistant/addons_config/$slug/config.yaml" ] && [ ! -f "/homeassistant/addons_config/$slug/migrated" ]; then
bashio::log.warning "Migrating config.yaml"
mv "/homeassistant/addons_config/$slug"/* /config/ || true
echo "Migrated to internal config folder accessible at /addon_configs/xxx-nextcloud" > "/homeassistant/addons_config/$slug/migrated"
fi
if [ -f "/homeassistant/addons_autoscripts/$slug.sh" ]; then
bashio::log.warning "Migrating autoscript"
mv /homeassistant/addons_autoscripts/nextcloud-ocr.sh /config/ || true
fi