mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-09 17:31:03 +01:00
9 lines
123 B
Bash
Executable File
9 lines
123 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -d /config ]; then
|
|
echo "Creating /config"
|
|
mkdir -p /config
|
|
fi
|
|
|
|
chown -R "$PUID:$PGID" /config
|