Merge pull request #222930 from Ma27/bump-nextcloud

nextcloud: 24.0.10 -> 24.0.11, 25.0.4 -> 25.0.5
This commit is contained in:
Maximilian Bosch 2023-03-24 22:01:54 +01:00 committed by GitHub
commit 2e4e45290e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -40,13 +40,13 @@ let
};
in {
nextcloud24 = generic {
version = "24.0.10";
sha256 = "sha256-B6+0gO9wn39BpcR0IsIuMa81DH8TWuDOlTZR9O1qRbk=";
version = "24.0.11";
sha256 = "sha256-ipsg4rulhRnatEW9VwUJLvOEtX5ZiK7MXK3AU8Q9qIo=";
};
nextcloud25 = generic {
version = "25.0.4";
sha256 = "sha256-wyUeAIOpQwPi1piLNS87Mwgqeacmsw/3RnCbD+hpoaY=";
version = "25.0.5";
sha256 = "sha256-xtxjLYPGK9V0GvUzXcE7awzeYQZNPNmlHuDmtHeMqaU=";
};
nextcloud26 = generic {

View file

@ -138,7 +138,7 @@ index af816c7ad04..e49e5508e15 100644
- // Therefore we assume that the database is only used by one user/service which is Nextcloud
- // Additional services should get installed in a separate database in order to stay secure
- // Also see https://www.postgresql.org/docs/15/ddl-schemas.html#DDL-SCHEMAS-PATTERNS
- $connectionMainDatabase->executeQuery('GRANT CREATE ON SCHEMA public TO ' . addslashes($this->dbUser));
- $connectionMainDatabase->executeQuery('GRANT CREATE ON SCHEMA public TO "' . addslashes($this->dbUser) . '"');
- $connectionMainDatabase->close();
- }