Added logging output during cleanup

This commit is contained in:
Josh Sherman 2013-10-25 11:09:57 -04:00
parent d9c3283883
commit 2ea5f2c48e

6
tmpufw
View file

@ -68,7 +68,7 @@ class tmpufw(object):
try: try:
handle = open(pid_file, 'w') handle = open(pid_file, 'w')
handle.write(str(getpid())) handle.write(str(getpid()))
handle.close(); handle.close()
except IOError: except IOError:
self.error('unable to create PID file: ' + pid_file) self.error('unable to create PID file: ' + pid_file)
@ -91,9 +91,11 @@ class tmpufw(object):
# Checks if rule has expired # Checks if rule has expired
if current_time < float(timestamp): if current_time < float(timestamp):
handle.write(line) handle.write(line)
print(time() + "\tskipped rule: " + rule)
else: else:
try: try:
self.ufw_execute('delete ' + rule); self.ufw_execute('delete ' + rule)
print(time() + "\tdeleted rule: " + rule)
except CalledProcessError as error: except CalledProcessError as error:
self.ufw_error(error) self.ufw_error(error)