Files
hassio-addons/papermerge/rootfs/etc/cont-init.d/20-folders
2021-03-07 09:36:06 +01:00

8 lines
131 B
Plaintext

#!/usr/bin/with-contenv bash
if [ ! -d /config ]; then
echo "Creating /config"
mkdir -p /config
chown -R abc:abc /config
fi