mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 10:21:02 +01:00
28 lines
798 B
Bash
Executable File
28 lines
798 B
Bash
Executable File
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
|
|
##################
|
|
# SYMLINK CONFIG #
|
|
##################
|
|
|
|
echo "Database stored in /share/plex"
|
|
|
|
if [ ! -d "/share/plex/Plex Media Server" ]; then
|
|
echo "... creating /share/plex/Plex Media Server"
|
|
mkdir -p "/share/plex/Plex Media Server"
|
|
fi
|
|
|
|
if [ -d "/config/Library/Application Support/Plex Media Server" ]; then
|
|
echo "... creating /symlink"
|
|
rm -r "/config/Library/Application Support/*"
|
|
ln -s "/share/plex/Plex Media Server" "/config/Library/Application Support"
|
|
fi
|
|
|
|
if [ ! -d "/config/Library/Application Support" ]; then
|
|
echo "... creating /symlink"
|
|
mkdir -p "/config/Library/Application Support"
|
|
ln -s "/share/plex/Plex Media Server" "/config/Library/Application Support"
|
|
fi
|
|
|
|
chown -R abc:abc /share/plex
|