mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-04-14 03:18:02 +02:00
Allow absent legacy folders
This commit is contained in:
@@ -18,7 +18,9 @@ fi
|
|||||||
|
|
||||||
# Clean symlinks
|
# Clean symlinks
|
||||||
find /config -maxdepth 1 -type l -delete
|
find /config -maxdepth 1 -type l -delete
|
||||||
find /homeassistant/addons_config -maxdepth 1 -type l -delete
|
if [ -d /homeassistant/addons_config ]; then
|
||||||
|
find /homeassistant/addons_config -maxdepth 1 -type l -delete
|
||||||
|
fi
|
||||||
|
|
||||||
# Remove erroneous folders
|
# Remove erroneous folders
|
||||||
if [ -d /homeassistant ]; then
|
if [ -d /homeassistant ]; then
|
||||||
@@ -30,7 +32,11 @@ if [ -d /homeassistant ]; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Create symlinks
|
# Create symlinks with legacy folders
|
||||||
ln -s /homeassistant/addons_config /config
|
if [ -d /homeassistant/addons_config ]; then
|
||||||
ln -s /homeassistant/addons_autoscripts /config
|
ln -s /homeassistant/addons_config /config
|
||||||
find /addon_configs/ -maxdepth 1 -mindepth 1 -type d -not -name "*filebrowser*" -exec ln -s {} /config/addons_config/ \;
|
find /addon_configs/ -maxdepth 1 -mindepth 1 -type d -not -name "*filebrowser*" -exec ln -s {} /config/addons_config/ \;
|
||||||
|
fi
|
||||||
|
if [ -d /homeassistant/addons_autoscripts ]; then
|
||||||
|
ln -s /homeassistant/addons_autoscripts /config
|
||||||
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user