mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 21:24:31 +04:00
As muninlite doesn't appear to have had a release in a few years and activity on the git repo appears to have stalled, we add some patches on our end for now. Patches: - 001->004 are upstream fixes from master. - 100 is a submitted PR: https://github.com/munin-monitoring/muninlite/pull/19 to fix https://github.com/munin-monitoring/muninlite/issues/14. - 200->204 is a submitted PR to allow customizing the monitored network interfaces: https://github.com/munin-monitoring/muninlite/pull/18. Despite the large number of patches it is actually a trivial change. Signed-off-by: Rany Hany <rany_hany@riseup.net>
19 lines
591 B
Diff
19 lines
591 B
Diff
From 74927fc6e7d2b5475d4b8d4bc426b55d23c67be9 Mon Sep 17 00:00:00 2001
|
|
From: "Kim B. Heino" <b@bbbs.net>
|
|
Date: Sun, 22 Aug 2021 19:37:40 +0300
|
|
Subject: [PATCH 1/5] ntpdate: fix typo on graph title
|
|
|
|
---
|
|
plugins/ntpdate | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/plugins/ntpdate
|
|
+++ b/plugins/ntpdate
|
|
@@ -1,5 +1,5 @@
|
|
config_ntpdate() {
|
|
- echo "graph_title NTP offset and dealy to peer $NTP_PEER"
|
|
+ echo "graph_title NTP offset and delay to peer $NTP_PEER"
|
|
echo "graph_args --base 1000 --vertical-label msec"
|
|
echo "graph_category time"
|
|
echo "offset.label Offset"
|