Package: munin-plugins-core Severity: normal Tags: patch Hi,
munin http_loadtime plugin doesn't work. > $ sudo munin-run http_loadtime auto > http___localhost_.value /etc/munin/plugins/http_loadtime: line 105: -f: > command not found Then install time package, it works. > $ sudo apt install time (snip) > $ sudo munin-run http_loadtime auto > http___localhost_.value 0.00 http_loadtime is automatically enabled if its host runs apache.
>From 01fd1edf215ff378ca9016e60d008392cc0adcd5 Mon Sep 17 00:00:00 2001 From: Hideki Yamane <[email protected]> Date: Sun, 7 Jan 2018 14:22:03 +0900 Subject: [PATCH] add Depends: time for http_loadtime --- debian/control | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/control b/debian/control index aa805521..b1138662 100644 --- a/debian/control +++ b/debian/control @@ -63,7 +63,8 @@ Description: network-wide graphing framework (node) Package: munin-plugins-core Provides: munin-plugins Architecture: all -Depends: ${perl:Depends}, ${misc:Depends}, munin-common (>= ${binary:Version}) +Depends: ${perl:Depends}, ${misc:Depends}, munin-common (>= ${binary:Version}), + time, Recommends: libnet-snmp-perl Suggests: conntrack, -- 2.15.1

