forked from p15670423/monkey
Changelog: Remove checkbox to try move the dropper
This commit is contained in:
parent
fd4bcb88ea
commit
de0fff9fbb
|
@ -22,6 +22,7 @@ Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
- Checkbox for self deleting a monkey agent on cleanup. #1537
|
- Checkbox for self deleting a monkey agent on cleanup. #1537
|
||||||
- Checkbox for file logging. #1537
|
- Checkbox for file logging. #1537
|
||||||
- Remove serialization of config. #1537
|
- Remove serialization of config. #1537
|
||||||
|
- Checkbox that gave the option to not try to first move the dropper file. #1537
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- A bug in network map page that caused delay of telemetry log loading. #1545
|
- A bug in network map page that caused delay of telemetry log loading. #1545
|
||||||
|
|
|
@ -187,8 +187,9 @@ class MonkeyDrops(object):
|
||||||
logger.info("Cleaning up the dropper")
|
logger.info("Cleaning up the dropper")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if self._config["source_path"].lower() != self._config["destination_path"].lower() \
|
if self._config["source_path"].lower() != self._config[
|
||||||
and os.path.exists(self._config["source_path"]):
|
"destination_path"
|
||||||
|
].lower() and os.path.exists(self._config["source_path"]):
|
||||||
|
|
||||||
# try removing the file first
|
# try removing the file first
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue