From 357f74955748df3619a43f39e82ef1b7b8fe39fb Mon Sep 17 00:00:00 2001 From: Ilija Lazoroski Date: Tue, 23 Nov 2021 14:48:52 +0100 Subject: [PATCH] Agent: Fix typo in puppet ping function that messed with node states --- monkey/infection_monkey/puppet/mock_puppet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/infection_monkey/puppet/mock_puppet.py b/monkey/infection_monkey/puppet/mock_puppet.py index 0652c109b..674908c14 100644 --- a/monkey/infection_monkey/puppet/mock_puppet.py +++ b/monkey/infection_monkey/puppet/mock_puppet.py @@ -154,7 +154,7 @@ class MockPuppet(IPuppet): return (False, None) if host == DOT_3: - return (True, "Linux") + return (True, "linux") if host == DOT_4: return (False, None)