diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2012-02-11 07:46:20 +0000 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2012-02-11 07:46:20 +0000 |
commit | da23c0fc83a117cd5df1c183b4728a11724cb6ff (patch) | |
tree | df65a28dab8a42e7d06d1b8e5a8be029731f93b6 /nagios-plugins | |
parent | 3d60ccc62314f3b1d04fc2e451bae10935c52c4b (diff) | |
download | sitesummary-da23c0fc83a117cd5df1c183b4728a11724cb6ff.tar.gz sitesummary-da23c0fc83a117cd5df1c183b4728a11724cb6ff.tar.bz2 sitesummary-da23c0fc83a117cd5df1c183b4728a11724cb6ff.tar.xz |
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.
Diffstat (limited to 'nagios-plugins')
-rwxr-xr-x | nagios-plugins/check_cups_queue | 2 |
1 files changed, 1 insertions, 1 deletions
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. |