mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
Merge pull request #45622 from xeji/p/munin-test
nixos/tests/munin: fix non-deterministic failure
This commit is contained in:
commit
6b709c538a
1 changed files with 16 additions and 6 deletions
|
@ -12,7 +12,13 @@ import ./make-test.nix ({ pkgs, ...} : {
|
|||
{ config, ... }:
|
||||
{
|
||||
services = {
|
||||
munin-node.enable = true;
|
||||
munin-node = {
|
||||
enable = true;
|
||||
# disable a failing plugin to prevent irrelevant error message, see #23049
|
||||
extraConfig = ''
|
||||
ignore_file ^apc_nis$
|
||||
'';
|
||||
};
|
||||
munin-cron = {
|
||||
enable = true;
|
||||
hosts = ''
|
||||
|
@ -21,7 +27,8 @@ import ./make-test.nix ({ pkgs, ...} : {
|
|||
'';
|
||||
};
|
||||
};
|
||||
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;
|
||||
|
||||
$one->waitForUnit("munin-node.service");
|
||||
# make sure the node is actually listening
|
||||
$one->waitForOpenPort(4949);
|
||||
$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/www/munin/one/index.html");
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue