wok rev 24915

updated monitorix (3.12.0 -> 3.14.0)
author Hans-G?nter Theisgen
date Sat Apr 09 16:53:38 2022 +0100 (2022-04-09)
parents 526dda97861f
children 01ed9626bb94
files monitorix/description.txt monitorix/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/monitorix/description.txt	Sat Apr 09 16:53:38 2022 +0100
     1.3 @@ -0,0 +1,26 @@
     1.4 +Monitorix is a free, open source, lightweight system monitoring tool
     1.5 +designed to monitor as many services and system resources as possible.
     1.6 +It has been created to be used under production Linux/UNIX servers,
     1.7 +but due to its simplicity and small size can be used on embedded
     1.8 +devices as well.
     1.9 +
    1.10 +It consists mainly of two programs: a collector, called monitorix,
    1.11 +which is a Perl daemon that is started automatically like any other
    1.12 +system service, and a CGI script called monitorix.cgi.
    1.13 +Monitorix includes its own HTTP server built in (which is listening
    1.14 +by default on port 8080/TCP) to see the statistics graphs, so you
    1.15 +aren't forced to install a third-party web server to use it.
    1.16 +Just point your browser at http://localhost:8080/monitorix.
    1.17 +
    1.18 +All of its development was initially created for monitoring Red Hat,
    1.19 +Fedora and CentOS Linux systems, so this project was made keeping
    1.20 +in mind these type of distributions.
    1.21 +Today it runs on different GNU/Linux distributions and even in other
    1.22 +UNIX systems like FreeBSD, OpenBSD and NetBSD.
    1.23 +
    1.24 +It is currently in active development adding new features, new graphs
    1.25 +and correcting bugs in the attempt to offer a great tool for daily
    1.26 +systems administration of any professional server.
    1.27 +
    1.28 +Monitorix is an open source project and, just like any other open
    1.29 +source project, anyone can contribute with his own time and knowledge.
     2.1 --- a/monitorix/receipt	Sat Apr 09 16:23:30 2022 +0100
     2.2 +++ b/monitorix/receipt	Sat Apr 09 16:53:38 2022 +0100
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="monitorix"
     2.7 -VERSION="3.12.0"
     2.8 +VERSION="3.14.0"
     2.9  CATEGORY="misc"
    2.10  SHORT_DESC="A lightweight system monitoring tool."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12 @@ -12,7 +12,7 @@
    2.13  WGET_URL="${WEB_SITE}$TARBALL"
    2.14  
    2.15  SUGGESTED="iptables logrotate"
    2.16 -DEPENDS="perl-dbi perl-cgi perl-config-general perl-http-server-simple \
    2.17 +DEPENDS="perl-cgi perl-config-general perl-dbi perl-http-server-simple
    2.18  	perl-libwww perl-mailtools perl-mime-lite perl-xml-simple rrdtool-perl"
    2.19  BUILD_DEPENDS=""
    2.20  
    2.21 @@ -33,15 +33,16 @@
    2.22  
    2.23  	cp -a $src/monitorix.conf	$fs/etc
    2.24  	sed -i 's|/var/lib/monitorix|/usr/lib/monitorix|' \
    2.25 -		$fs/etc/monitorix.conf
    2.26 +					$fs/etc/monitorix.conf
    2.27  	sed -i 's|group = nobody|group = nogroup|' \
    2.28 -		$fs/etc/monitorix.conf
    2.29 +					$fs/etc/monitorix.conf
    2.30  	cp -a $src/docs/monitorix.logrotate \
    2.31  					$fs/etc/logrotate.d/monitorix
    2.32  	cp -a $src/monitorix		$fs/usr/bin
    2.33  	cp -a $src/lib			$fs/usr/lib/monitorix
    2.34  	cp -a $src/monitorix.cgi $src/*.png \
    2.35 -					$src/reports $fs/usr/share/monitorix
    2.36 +					$fs/usr/share/monitorix
    2.37 +	cp -a $src/*.png		$fs/usr/share/monitorix
    2.38  }
    2.39  
    2.40  post_install()