Control the startup msg with -q, too

bug/bundler_fix
Tod Beardsley 2014-10-17 12:41:58 -05:00
parent a45b21b6bf
commit 5978bd5e62
No known key found for this signature in database
GPG Key ID: 1EFFB682ADB9F193
2 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,7 @@ class Metasploit::Framework::Command::Console < Metasploit::Framework::Command::
def spinner
return if $msf_spinner_thread
$msf_spinner_thread = Thread.new do
$stdout.print "[*] Starting the Metasploit Framework console..."
loop do
%q{/-\|}.each_char do |c|
$stdout.print c

View File

@ -45,6 +45,5 @@ end
require Pathname.new(__FILE__).realpath.expand_path.parent.join('config', 'boot')
require 'metasploit/framework/command/console'
$stdout.print "[*] Starting the Metasploit Framework console..."
Metasploit::Framework::Command::Console.start
$stdout.puts "[*] Metasploit Framework console session ended"