about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorMidnight Veil <midnightveil@fea.st>2023-12-25 16:15:27 +1100
committerBjørn Forsman <bjorn.forsman@gmail.com>2023-12-25 09:13:32 +0100
commited1a16e8869a2bf54b9f2bb3e7a7fd48cab7d197 (patch)
tree2865b1985e45c14075ea3894dc6b89e72118c903 /nixos/tests
parent12fdbb1c17f0929e1dd3460788ca9103097d2e77 (diff)
munin: fix missing Date::Parse module error & make test fail w/o a fix
Upstream change: https://github.com/munin-monitoring/munin/pull/1502
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/munin.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/tests/munin.nix b/nixos/tests/munin.nix
index 4ec17e0339df0..e371b2dffa6b8 100644
--- a/nixos/tests/munin.nix
+++ b/nixos/tests/munin.nix
@@ -37,8 +37,10 @@ import ./make-test-python.nix ({ pkgs, ...} : {
     with subtest("ensure munin-node starts and listens on 4949"):
         one.wait_for_unit("munin-node.service")
         one.wait_for_open_port(4949)
+
     with subtest("ensure munin-cron output is correct"):
         one.wait_for_file("/var/lib/munin/one/one-uptime-uptime-g.rrd")
         one.wait_for_file("/var/www/munin/one/index.html")
+        one.wait_for_file("/var/www/munin/one/one/diskstat_iops_vda-day.png", timeout=60)
   '';
 })