mrtg/uptime.pl

Tue, 28 Aug 2012 18:35:40 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 28 Aug 2012 18:35:40 +0200
changeset 575
6e491d7671a4
parent 160
1a36468e720c
permissions
-rw-r--r--

Update version, modernize packaging, accommodate libevent version 2 opaque
evbuffer datatype, port Linux style flock(2) to SVR4, include correct
non BSD and non SVR4 headers in DNS and resolving logic, correctly
include a arc4random(3) implementation for platforms lacking it,
conditionally implement the nonstandard MIN(a,b) macro, and use
parallel make for faster SMP and multicore builds.

michael@176 1 #! @l_prefix@/bin/perl
michael@136 2 ##
michael@136 3 ## uptime.pl: provide formatted uptime(1) information
michael@136 4 ##
michael@136 5
michael@138 6 $null = 0;
michael@136 7 $uptime = `uptime`;
michael@138 8 $hostname = `hostname`;
michael@136 9
michael@136 10 $uptime =~ /up (.*?) day/;
michael@136 11 $up = int($1);
michael@136 12
michael@160 13 # According to http://oss.oetiker.ch/mrtg/doc/mrtg-reference.en.html
michael@160 14 # 'the external command must return 4 lines of output.'
michael@138 15 print "$up\n";
michael@138 16 print "$up\n";
michael@138 17 print "$null\n";
michael@160 18 print "$null\n";
michael@136 19

mercurial