Hello Steve,

Am Fri, 12 Apr 2019 21:41:34 -0700
schrieb Steve Langasek <steve.langa...@canonical.com>:

> After merging munin 2.0.47-1 into Ubuntu, the node-systemd autopkgtest was
> failing on armhf because of a mismatch in the list of plugins being exposed:
> [..]
> The attached patch fixes the test failure by adding a test dependency on
> net-tools.  Perhaps it would also make sense for munin-plugins-core to
> Recommend: net-tools, I don't know. 

Thank you for preparing the patch!

Regarding the net-tools dependency: I think, we will add it to "Suggests".

I attached a patch, that fixes the test failure for both situations (with and
without net-tools).
We plan to apply it after the release of Buster.

Cheers,
Lars
diff --git a/debian/tests/munin-node/02.plugins.t b/debian/tests/munin-node/02.plugins.t
index de777cd9..3d6374f6 100755
--- a/debian/tests/munin-node/02.plugins.t
+++ b/debian/tests/munin-node/02.plugins.t
@@ -27,7 +27,6 @@ interrupts
 irqstats
 load
 memory
-netstat
 open_files
 open_inodes
 proc_pri
@@ -51,6 +50,9 @@ EOF
       echo fw_conntrack
       echo fw_forwarded_local
     fi
+    if [ -x /bin/netstat ]; then
+      echo netstat
+    fi
   } | sort >expected_plugins
   test_cmp expected_plugins all_without_network_interfaces
 '

Reply via email to