nixos/nextcloud: Remove confusing comment
There is a comment above the invocation of 'nextcloud-occ app:enable', stating that the script should not fail if any of the apps cannot be enabled, but there is nothing in place to suppress errors. The app:enable command already continues installing the remaining apps when one fails to install, and we do not want to suppress errors in the setup script, so this just removes the comment about not failing.
This commit is contained in:
@@ -811,7 +811,7 @@ in {
|
||||
${occ}/bin/nextcloud-occ config:system:delete trusted_domains
|
||||
|
||||
${optionalString (cfg.extraAppsEnable && cfg.extraApps != { }) ''
|
||||
# Try to enable apps (don't fail when one of them cannot be enabled , eg. due to incompatible version)
|
||||
# Try to enable apps
|
||||
${occ}/bin/nextcloud-occ app:enable ${concatStringsSep " " (attrNames cfg.extraApps)}
|
||||
''}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user