mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-12 19:01:02 +01:00
10 lines
252 B
Plaintext
10 lines
252 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
|