From da23c0fc83a117cd5df1c183b4728a11724cb6ff Mon Sep 17 00:00:00 2001 From: Petter Reinholdtsen Date: Sat, 11 Feb 2012 07:46:20 +0000 Subject: Change temp file name created by nagios-plugins check_cups_queue to include host name being checked, to make it easier to figure out why some of the temp files are left behind. --- debian/changelog | 8 ++++++++ nagios-plugins/check_cups_queue | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 7af1050..2df5469 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +sitesummary (0.1.3) UNRELEASED; urgency=low + + * Change temp file name created by nagios-plugins check_cups_queue to + include host name being checked, to make it easier to figure out why + some of the temp files are left behind. + + -- Petter Reinholdtsen Sat, 11 Feb 2012 08:42:08 +0100 + sitesummary (0.1.2) unstable; urgency=low * Add support in nagios plugins check_etc_hosts and check_etc_resolv diff --git a/nagios-plugins/check_cups_queue b/nagios-plugins/check_cups_queue index 4666bc8..e745dd1 100755 --- a/nagios-plugins/check_cups_queue +++ b/nagios-plugins/check_cups_queue @@ -155,7 +155,7 @@ then exit $exitstatus else - JOBTMP=`mktemp -t lpstat.XXXXXX` # Create a tmpfile to store the lpstat results + JOBTMP=`mktemp -t lpstat.$hostname.XXXXXX` # Create a tmpfile to store the lpstat results STALEJOBCOUNT=0 # default number of old jobs CURDATETS=`date +%s` # Get the current date as unixtime $LPSTAT -h $hostname -o > $JOBTMP # run the lpstat command against the host. -- cgit v1.2.3