Create 20-folders

This commit is contained in:
Alexandre
2021-03-07 09:24:35 +01:00
committed by GitHub
parent 9730cd8388
commit e0860c5f21

View File

@@ -0,0 +1,7 @@
#!/usr/bin/with-contenv bash
if [ ! -d /data/config ]; then
echo "Creating /data/config"
mkdir -p /data/config
chown -R abc:abc /data/config
fi