nixos/plausible: fix unit start script

In 8bb777ee37 a condition was added to
only execute the createdb.sh script if database setup was configurated.
However a superfluace " was added at the end of the line which cased an
escaping error the resulted in #309520.

Fixes #309520
This commit is contained in:
Alexander Sieg 2024-05-07 15:27:08 +02:00
parent 8f650600cf
commit 3be1b16698
No known key found for this signature in database

View File

@ -278,7 +278,7 @@ in {
${lib.optionalString cfg.database.postgres.setup ''
# setup
${cfg.package}/createdb.sh"
${cfg.package}/createdb.sh
''}
${cfg.package}/migrate.sh