Files
hassio-addons/webtop/rootfs/etc/cont-init.d/20-folders.sh
Alexandre a22ce94a46 hadolint
2022-01-17 13:18:05 +01:00

18 lines
455 B
Bash

#!/usr/bin/with-contenv bashio
# shellcheck shell=bash
# Define home
HOME="/share/webtop"
mkdir -p $HOME
chown -R abc:abc $HOME
# Create symlinks
#for FOLDERS in ".config" ".local" "Desktop" "Documents" "Downloads" "Music" "Pictures" "Public" "Templates" "Videos" "thinclient_drives"; do
#mkdir -p $HOME/$FOLDERS
#if [ -d /config/$FOLDERS ]; then
# cp /config/$FOLDERS/* $HOME/$FOLDERS
# rm -r /config/$FOLDERS
#fi
#ln -s $HOME/$FOLDERS /config
#done