oops, fix one symbol missing
This commit is contained in:
parent
24d9df968e
commit
16706a5d5f
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ class PluginThread(threading.Thread):
|
|||
def main(self):
|
||||
random.shuffle(self.hosts)
|
||||
for host in self.hosts:
|
||||
fping = 'fping -qct' + self.timeout + ' ' + host + ' &>/dev/null'
|
||||
fping = 'fping -qc1t' + self.timeout + ' ' + host + ' &>/dev/null'
|
||||
response = os.system(fping)
|
||||
if response == 0:
|
||||
self.format_status('on')
|
||||
|
|
Loading…
Reference in a new issue