Files
hassio-addons/teamspeak/rootfs/etc/cont-init.d/20-folders.sh
2022-06-15 14:54:07 +02:00

14 lines
266 B
Bash

#!/usr/bin/with-contenv bashio
# shellcheck shell=bash
LOCATION=$(bashio::config 'data_location')
# Data remanence
if -d /teamspeak/save; then
cp -n /teamspeak/save "$LOCATION"
rm -r /teamspeak/save
fi
mkdir -p "$LOCATION"
ln -sf "$LOCATION" /teamspeak/save