Skip to content

Commit c6519d0

Browse files
committed
Merge pull request #2 from wvu-r7/pr/4063
Change killing back to stopping
2 parents 88d093e + 4251ad1 commit c6519d0

File tree

1 file changed

+2
-2
lines changed
  • lib/msf/ui/console/command_dispatcher

1 file changed

+2
-2
lines changed

lib/msf/ui/console/command_dispatcher/core.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -798,10 +798,10 @@ def cmd_jobs(*args)
798798
# Terminate the supplied job ID(s)
799799
when "-k"
800800
job_list = build_jobs_array(val)
801-
print_status("Killing the following job(s): #{job_list.join(', ')}")
801+
print_status("Stopping the following job(s): #{job_list.join(', ')}")
802802
job_list.map(&:to_s).each do |job|
803803
if framework.jobs.has_key?(job)
804-
print_status("Killing job #{job}")
804+
print_status("Stopping job #{job}")
805805
framework.jobs.stop_job(job)
806806
else
807807
print_error("Invalid job identifier: #{job}")

0 commit comments

Comments
 (0)