Merge pull request #87261 from symphorien/tt-rss

nixos/tt-rss: small improvements
This commit is contained in:
Aaron Andersen 2020-05-18 16:59:05 -04:00 committed by GitHub
commit f82e267fb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -631,9 +631,12 @@ let
serviceConfig = {
User = "${cfg.user}";
Group = "tt_rss";
ExecStart = "${pkgs.php}/bin/php ${cfg.root}/update.php --daemon";
ExecStart = "${pkgs.php}/bin/php ${cfg.root}/update.php --daemon --quiet";
StandardOutput = "syslog";
StandardError = "syslog";
Restart = "on-failure";
RestartSec = "60";
SyslogIdentifier = "tt-rss";
};
wantedBy = [ "multi-user.target" ];