syncstorage-rs: 0.12.5 -> 0.13.1

this includes a module update because the package update breaks the
module. would rather not break system bisection if possible.
This commit is contained in:
pennae 2022-12-19 12:09:25 +01:00 committed by pennae
parent 0776b54a89
commit 13d725908c
2 changed files with 8 additions and 6 deletions

View file

@ -11,8 +11,10 @@ let
format = pkgs.formats.toml {};
settings = {
database_url = dbURL;
human_logs = true;
syncstorage = {
database_url = dbURL;
};
tokenserver = {
node_type = "mysql";
database_url = dbURL;
@ -253,7 +255,7 @@ in
serviceConfig = {
User = defaultUser;
Group = defaultUser;
ExecStart = "${cfg.package}/bin/syncstorage --config ${configFile}";
ExecStart = "${cfg.package}/bin/syncserver --config ${configFile}";
Stderr = "journal";
EnvironmentFile = lib.mkIf (cfg.secrets != null) "${cfg.secrets}";