lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

gatus: 5.19.0 -> 5.23.2

undefined 5365b3cd 2a54616c

+6 -5
+2 -1
nixos/modules/services/monitoring/gatus.nix
··· 105 105 config = mkIf cfg.enable { 106 106 systemd.services.gatus = { 107 107 description = "Automated developer-oriented status page"; 108 - after = [ "network.target" ]; 108 + after = [ "network-online.target" ]; 109 + requires = [ "network-online.target" ]; 109 110 wantedBy = [ "multi-user.target" ]; 110 111 111 112 serviceConfig = {
+1 -1
nixos/tests/gatus.nix
··· 29 29 30 30 testScript = '' 31 31 machine.wait_for_unit("gatus.service") 32 - machine.succeed("curl -s http://localhost:8080/metrics | grep go_info") 32 + machine.wait_until_succeeds("curl -s http://localhost:8080/metrics | grep go_info", timeout=60) 33 33 ''; 34 34 }
+3 -3
pkgs/by-name/ga/gatus/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "gatus"; 10 - version = "5.19.0"; 10 + version = "5.23.2"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "TwiN"; 14 14 repo = "gatus"; 15 15 rev = "v${version}"; 16 - hash = "sha256-Jw7OdFGSZgxy52fICURc313ONsmI9Qlsf75aS0LUB9s="; 16 + hash = "sha256-b/UQwwyspOKrW9mRoq0zJZ41lNLM+XvGFlpxz+9ZMco="; 17 17 }; 18 18 19 - vendorHash = "sha256-CofmAYsRp0bya+q/eFJkWV9tGfhg37UxDFR9vpCKYls="; 19 + vendorHash = "sha256-jMNsd7AiWG8vhUW9cLs5Ha2wmdw9SHjSDXIypvCKYqk="; 20 20 21 21 subPackages = [ "." ]; 22 22