summaryrefslogtreecommitdiffstats
path: root/contrib/check_nmap.py
diff options
context:
space:
mode:
authorFabio Rueda <fabio@vizzuality.com>2013-02-27 17:22:18 (GMT)
committerFabio Rueda <fabio@vizzuality.com>2013-02-27 17:22:18 (GMT)
commit93b35b06f953e868de4b79e420c0c967ca78feaf (patch)
treeff76faf816c79dae6179753646140424b5774aeb /contrib/check_nmap.py
parent0ac1a30e7a48acfaa2ffb55a443bd66a497a13ac (diff)
downloadmonitoring-plugins-93b35b06f953e868de4b79e420c0c967ca78feaf.tar.gz
working on ubuntu precise12.04refs/pull/40/head
Diffstat (limited to 'contrib/check_nmap.py')
-rw-r--r--contrib/check_nmap.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/check_nmap.py b/contrib/check_nmap.py
index b7a8738..481a62b 100644
--- a/contrib/check_nmap.py
+++ b/contrib/check_nmap.py
@@ -207,8 +207,7 @@ class CheckNmap:
207 # _if_ two processes in deed get the same tmp-file 207 # _if_ two processes in deed get the same tmp-file
208 # the only result is a normal error message to nagios 208 # the only result is a normal error message to nagios
209 # 209 #
210 r=random.random() 210 self.tmp_file=tempfile.mktemp('.%s') % random.randint(0,100000)
211 self.tmp_file=tempfile.mktemp('.%s')%r.randint(0,100000)
212 if self.debug: 211 if self.debug:
213 print 'Tmpfile is: %s'%self.tmp_file 212 print 'Tmpfile is: %s'%self.tmp_file
214 # 213 #