mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-03-03 16:00:29 +01:00
12 lines
219 B
Bash
12 lines
219 B
Bash
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
|
|
# Define home
|
|
HOME="/config/addons_config/guacd"
|
|
|
|
PUID="$(bashio::config "PUID")"
|
|
PGID="$(bashio::config "PGID")"
|
|
|
|
mkdir -p "$HOME"
|
|
chown -R "$PUID:$PGID" "$HOME"
|