mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-17 09:58:16 +01:00
10 lines
253 B
Plaintext
10 lines
253 B
Plaintext
#!/usr/bin/with-contenv bash
|
||
|
||
# copy config
|
||
[[ ! -f /data/config/www/nextcloud/config/config.php ]] && \
|
||
cp /defaults/config.php /data/config/www/nextcloud/config/config.php
|
||
|
||
# permissions
|
||
chown abc:abc \
|
||
/data/config/www/nextcloud/config/config.php
|