# HG changeset patch # User Hans-G?nter Theisgen # Date 1649519618 -3600 # Node ID e45212bb75442a4f8ead78918399f0d8ba288532 # Parent 526dda97861f66faacd0f39f3ceca9af7748b516 updated monitorix (3.12.0 -> 3.14.0) diff -r 526dda97861f -r e45212bb7544 monitorix/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/monitorix/description.txt Sat Apr 09 16:53:38 2022 +0100 @@ -0,0 +1,26 @@ +Monitorix is a free, open source, lightweight system monitoring tool +designed to monitor as many services and system resources as possible. +It has been created to be used under production Linux/UNIX servers, +but due to its simplicity and small size can be used on embedded +devices as well. + +It consists mainly of two programs: a collector, called monitorix, +which is a Perl daemon that is started automatically like any other +system service, and a CGI script called monitorix.cgi. +Monitorix includes its own HTTP server built in (which is listening +by default on port 8080/TCP) to see the statistics graphs, so you +aren't forced to install a third-party web server to use it. +Just point your browser at http://localhost:8080/monitorix. + +All of its development was initially created for monitoring Red Hat, +Fedora and CentOS Linux systems, so this project was made keeping +in mind these type of distributions. +Today it runs on different GNU/Linux distributions and even in other +UNIX systems like FreeBSD, OpenBSD and NetBSD. + +It is currently in active development adding new features, new graphs +and correcting bugs in the attempt to offer a great tool for daily +systems administration of any professional server. + +Monitorix is an open source project and, just like any other open +source project, anyone can contribute with his own time and knowledge. diff -r 526dda97861f -r e45212bb7544 monitorix/receipt --- a/monitorix/receipt Sat Apr 09 16:23:30 2022 +0100 +++ b/monitorix/receipt Sat Apr 09 16:53:38 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="monitorix" -VERSION="3.12.0" +VERSION="3.14.0" CATEGORY="misc" SHORT_DESC="A lightweight system monitoring tool." MAINTAINER="pascal.bellard@slitaz.org" @@ -12,7 +12,7 @@ WGET_URL="${WEB_SITE}$TARBALL" SUGGESTED="iptables logrotate" -DEPENDS="perl-dbi perl-cgi perl-config-general perl-http-server-simple \ +DEPENDS="perl-cgi perl-config-general perl-dbi perl-http-server-simple perl-libwww perl-mailtools perl-mime-lite perl-xml-simple rrdtool-perl" BUILD_DEPENDS="" @@ -33,15 +33,16 @@ cp -a $src/monitorix.conf $fs/etc sed -i 's|/var/lib/monitorix|/usr/lib/monitorix|' \ - $fs/etc/monitorix.conf + $fs/etc/monitorix.conf sed -i 's|group = nobody|group = nogroup|' \ - $fs/etc/monitorix.conf + $fs/etc/monitorix.conf cp -a $src/docs/monitorix.logrotate \ $fs/etc/logrotate.d/monitorix cp -a $src/monitorix $fs/usr/bin cp -a $src/lib $fs/usr/lib/monitorix cp -a $src/monitorix.cgi $src/*.png \ - $src/reports $fs/usr/share/monitorix + $fs/usr/share/monitorix + cp -a $src/*.png $fs/usr/share/monitorix } post_install()