nixos/tests/munin: fix non-deterministic failure

- wait for node to listen before starting munin-cron
- increase timeout for munin-cron startup
- disable a failing plugin to remove irrelevant error message
This commit is contained in:
Uli Baum 2018-08-25 14:27:41 +02:00
parent 2c1e736ae8
commit 268bb4ea3c
1 changed files with 16 additions and 6 deletions

View File

@ -12,16 +12,23 @@ import ./make-test.nix ({ pkgs, ...} : {
{ config, ... }: { config, ... }:
{ {
services = { services = {
munin-node.enable = true; munin-node = {
munin-cron = {
enable = true; enable = true;
hosts = '' # disable a failing plugin to prevent irrelevant error message, see #23049
[${config.networking.hostName}] extraConfig = ''
address localhost ignore_file ^apc_nis$
''; '';
}; };
munin-cron = {
enable = true;
hosts = ''
[${config.networking.hostName}]
address localhost
'';
};
}; };
systemd.services.munin-node.serviceConfig.TimeoutStartSec = "3min"; # long timeout to prevent hydra failure on high load
systemd.services.munin-node.serviceConfig.TimeoutStartSec = "10min";
}; };
}; };
@ -29,7 +36,10 @@ import ./make-test.nix ({ pkgs, ...} : {
startAll; startAll;
$one->waitForUnit("munin-node.service"); $one->waitForUnit("munin-node.service");
# make sure the node is actually listening
$one->waitForOpenPort(4949);
$one->succeed('systemctl start munin-cron'); $one->succeed('systemctl start munin-cron');
# wait for munin-cron output
$one->waitForFile("/var/lib/munin/one/one-uptime-uptime-g.rrd"); $one->waitForFile("/var/lib/munin/one/one-uptime-uptime-g.rrd");
$one->waitForFile("/var/www/munin/one/index.html"); $one->waitForFile("/var/www/munin/one/index.html");
''; '';