Skip to content

Commit

Permalink
Added missing space in fail_with statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jheysel-r7 committed Feb 24, 2023
1 parent 5e2f096 commit 9a874c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/post/linux/manage/disable_clamav.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def run
print_good('python3 exists')
payload = "python3 -c \"import socket; sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM); sock.connect('#{clamav_socket}'); sock.send('#{cmd}'.encode());\""
else
fail_with(Failure::NotFound,'No suitable binary found on the target host. Quitting!')
fail_with(Failure::NotFound, 'No suitable binary found on the target host. Quitting!')
end

print_status("Checking file path #{clamav_socket} exists and is writable... ")
Expand Down

0 comments on commit 9a874c3

Please sign in to comment.