We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 88d093e + 4251ad1 commit c6519d0Copy full SHA for c6519d0
lib/msf/ui/console/command_dispatcher/core.rb
@@ -798,10 +798,10 @@ def cmd_jobs(*args)
798
# Terminate the supplied job ID(s)
799
when "-k"
800
job_list = build_jobs_array(val)
801
- print_status("Killing the following job(s): #{job_list.join(', ')}")
+ print_status("Stopping the following job(s): #{job_list.join(', ')}")
802
job_list.map(&:to_s).each do |job|
803
if framework.jobs.has_key?(job)
804
- print_status("Killing job #{job}")
+ print_status("Stopping job #{job}")
805
framework.jobs.stop_job(job)
806
else
807
print_error("Invalid job identifier: #{job}")
0 commit comments