summary refs log tree commit diff
path: root/nixos/tests/munin.nix
diff options
context:
space:
mode:
authorBen Kelly <bk@ancilla.ca>2018-12-13 18:16:07 -0500
committerBen Kelly <btk@google.com>2019-02-04 20:17:26 -0500
commit0c3208a8e462c95a1deeb5bd7ab3c467ff2eec49 (patch)
treeb68635dd43acccab4a9ea12e5a0b9595bd3f1187 /nixos/tests/munin.nix
parentc74abf763af37fd453a2dd5aa8390da8256e4f8e (diff)
downloadnixpkgs-0c3208a8e462c95a1deeb5bd7ab3c467ff2eec49.tar
nixpkgs-0c3208a8e462c95a1deeb5bd7ab3c467ff2eec49.tar.gz
nixpkgs-0c3208a8e462c95a1deeb5bd7ab3c467ff2eec49.tar.bz2
nixpkgs-0c3208a8e462c95a1deeb5bd7ab3c467ff2eec49.tar.lz
nixpkgs-0c3208a8e462c95a1deeb5bd7ab3c467ff2eec49.tar.xz
nixpkgs-0c3208a8e462c95a1deeb5bd7ab3c467ff2eec49.tar.zst
nixpkgs-0c3208a8e462c95a1deeb5bd7ab3c467ff2eec49.zip
nixos/munin: add disabledPlugins option
This is just a set of globs to remove from the active plugins directory
after autoconfiguration is complete.

I also removed the hard-coded disabling of "diskstats", since it seems
to work just fine now.
Diffstat (limited to 'nixos/tests/munin.nix')
-rw-r--r--nixos/tests/munin.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/nixos/tests/munin.nix b/nixos/tests/munin.nix
index 9f66005292a..95cecf17b8c 100644
--- a/nixos/tests/munin.nix
+++ b/nixos/tests/munin.nix
@@ -15,9 +15,7 @@ import ./make-test.nix ({ pkgs, ...} : {
            munin-node = {
              enable = true;
              # disable a failing plugin to prevent irrelevant error message, see #23049
-             extraConfig = ''
-               ignore_file ^apc_nis$
-             '';
+             disabledPlugins = [ "apc_nis" ];
            };
            munin-cron = {
             enable = true;