forked from p34709852/monkey
Bugfix in dropper.py, handle gracefully failure in cleanup
This commit is contained in:
parent
cc4ad05be8
commit
558fa749ca
|
@ -133,6 +133,7 @@ class MonkeyDrops(object):
|
|||
LOG.warn("Seems like monkey died too soon")
|
||||
|
||||
def cleanup(self):
|
||||
try:
|
||||
if (self._config['source_path'].lower() != self._config['destination_path'].lower()) and \
|
||||
os.path.exists(self._config['source_path']) and \
|
||||
WormConfiguration.dropper_try_move_first:
|
||||
|
@ -152,3 +153,5 @@ class MonkeyDrops(object):
|
|||
else:
|
||||
LOG.debug("Dropper source file '%s' is marked for deletion on next boot",
|
||||
self._config['source_path'])
|
||||
except AttributeError:
|
||||
LOG.error("Invalid configuration options. Failing")
|
||||
|
|
Loading…
Reference in New Issue