From b8519300ab6387c5542cccb28037b98793d4a6ac Mon Sep 17 00:00:00 2001 From: itsikkes Date: Sat, 23 Jul 2016 08:59:26 +0300 Subject: [PATCH] config bugfix - missing field --- chaos_monkey/config.py | 3 +++ chaos_monkey/example.conf | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/chaos_monkey/config.py b/chaos_monkey/config.py index 572b4648f..721b3d9a2 100644 --- a/chaos_monkey/config.py +++ b/chaos_monkey/config.py @@ -146,6 +146,9 @@ class Configuration(object): "127.0.0.1:5000" ] + # sets whether or not to locally save the running configuration after finishing + serialize_config = False + # sets whether or not to retry failed hosts on next scan retry_failed_explotation = True diff --git a/chaos_monkey/example.conf b/chaos_monkey/example.conf index 3d1e6d133..3fcb6adf7 100644 --- a/chaos_monkey/example.conf +++ b/chaos_monkey/example.conf @@ -64,7 +64,7 @@ "retry_failed_explotation": true, "scanner_class": "TcpScanner", "self_delete_in_cleanup": false, - "serialize_config": true, + "serialize_config": false, "singleton_mutex_name": "{2384ec59-0df8-4ab9-918c-843740924a28}", "skip_exploit_if_file_exist": true, "ssh_user": "root",