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:
parent
8f650600cf
commit
3be1b16698
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ in {
|
|||
|
||||
${lib.optionalString cfg.database.postgres.setup ''
|
||||
# setup
|
||||
${cfg.package}/createdb.sh"
|
||||
${cfg.package}/createdb.sh
|
||||
''}
|
||||
|
||||
${cfg.package}/migrate.sh
|
||||
|
|
Loading…
Reference in a new issue