2013-10-20 21:16:13 +02:00
|
|
|
# This test runs basic munin setup with node and cron job running on the same
|
|
|
|
# machine.
|
|
|
|
|
2014-04-14 14:02:44 +02:00
|
|
|
import ./make-test.nix {
|
|
|
|
|
|
|
|
nodes = {
|
2013-10-20 21:16:13 +02:00
|
|
|
one =
|
|
|
|
{ config, pkgs, ... }:
|
2014-04-14 14:02:44 +02:00
|
|
|
{
|
2013-10-20 21:16:13 +02:00
|
|
|
services = {
|
|
|
|
munin-node.enable = true;
|
|
|
|
munin-cron = {
|
|
|
|
enable = true;
|
|
|
|
hosts = ''
|
|
|
|
[${config.networking.hostName}]
|
|
|
|
address localhost
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2014-04-14 14:02:44 +02:00
|
|
|
|
2013-10-20 21:16:13 +02:00
|
|
|
testScript = ''
|
|
|
|
startAll;
|
2014-04-14 14:02:44 +02:00
|
|
|
|
2013-10-20 21:16:13 +02:00
|
|
|
$one->waitForUnit("munin-node.service");
|
|
|
|
$one->waitForFile("/var/lib/munin/one/one-uptime-uptime-g.rrd");
|
|
|
|
$one->waitForFile("/var/www/munin/one/index.html");
|
|
|
|
'';
|
|
|
|
}
|