From 57dbf4c082e00be0c27412b72080b99b09101d88 Mon Sep 17 00:00:00 2001 From: sefidel Date: Sun, 8 Oct 2023 01:21:44 +0900 Subject: nixos/tt-rss: supply --force-yes to update-schema This commit fixes the service failing to start for the first time since the update-schema operation requires human interaction (typing 'yes') in order to actually perform the schema upgrade. --- nixos/modules/services/web-apps/tt-rss.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nixos/modules/services/web-apps/tt-rss.nix') diff --git a/nixos/modules/services/web-apps/tt-rss.nix b/nixos/modules/services/web-apps/tt-rss.nix index 592ab253f7daf..88f9b5cba5c46 100644 --- a/nixos/modules/services/web-apps/tt-rss.nix +++ b/nixos/modules/services/web-apps/tt-rss.nix @@ -596,7 +596,7 @@ let description = "Tiny Tiny RSS feeds update daemon"; preStart = '' - ${pkgs.php81}/bin/php ${cfg.root}/www/update.php --update-schema + ${pkgs.php81}/bin/php ${cfg.root}/www/update.php --update-schema --force-yes ''; serviceConfig = { -- cgit 1.4.1