Nextcloud easy install script
Can you please add internal domain name to the script?
[ -z "$(uname -n)" ] || [ -z "$(uci get dhcp.@dnsmasq[0].domain)" ]|| sudo -u nobody php-cli ./occ config:system:set --value "$(uname -n ).$(uci get dhcp.@dnsmasq[0].domain)" trusted_domains 3
In my case it adds 3 => 'turris.lan',
The update checker value should be a boolean instead of string (default):
sudo -u nobody php-cli ./occ config:system:set --value false updatechecker --type=boolean
The result in config.php:
'updatechecker' => false,
instead of
'updatechecker' => 'false',