initial build

This commit is contained in:
Alexandre
2022-02-07 09:47:50 +01:00
parent e25a38a4dd
commit 36b584f0c6
10 changed files with 346 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
#!/usr/bin/with-contenv bashio
##################
# Create folders #
##################
PUID=$(bashio::config 'PUID')
GUID=$(bashio::config 'GUID')
if [ ! -d /config/addons_config/plex-meta-manager ]; then
echo "Creating /config/addons_config/plex-meta-manager"
mkdir -p /config/addons_config/plex-meta-manager
fi
chown -R "$PUID":"$GUID" /config/addons_config/plex-meta-manager
###################
# Set config.yaml #
###################
# Where is the config
CONFIGSOURCE=$(bashio::config "HOME")
# Check if config file is there, or create one from template
if [ -f $CONFIGSOURCE/config.yml ]; then
echo "Using config file found in $CONFIGSOURCE"
else
echo "No config file, creating one from template"
cp /templates/config.yml "$(dirname "${CONFIGSOURCE}")"
fi