mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-20 03:28:11 +01:00
12 lines
220 B
Plaintext
12 lines
220 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
##################
|
|
# SYMLINK CONFIG #
|
|
##################
|
|
|
|
if [ /share/plex/Library ]; then
|
|
echo "Using existing Library folder"
|
|
rm /config/Library
|
|
ln -s /share/plex/Library /config
|
|
fi
|