diff options
| -rw-r--r-- | lib/leap_cli/commands/deploy.rb | 2 | ||||
| -rw-r--r-- | lib/leap_cli/util/remote_command.rb | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/leap_cli/commands/deploy.rb b/lib/leap_cli/commands/deploy.rb index 09666ae..814407f 100644 --- a/lib/leap_cli/commands/deploy.rb +++ b/lib/leap_cli/commands/deploy.rb @@ -54,7 +54,7 @@ module LeapCli            end            unless options[:sync]              ssh.leap.log :applying, "puppet" do -              ssh.puppet.apply(:verbosity => LeapCli.log_level, :tags => tags(options), :force => options[:force]) +              ssh.puppet.apply(:verbosity => [LeapCli.log_level,5].min, :tags => tags(options), :force => options[:force])              end            end          end diff --git a/lib/leap_cli/util/remote_command.rb b/lib/leap_cli/util/remote_command.rb index b4b2b1f..6b4d75f 100644 --- a/lib/leap_cli/util/remote_command.rb +++ b/lib/leap_cli/util/remote_command.rb @@ -13,7 +13,7 @@ module LeapCli; module Util; module RemoteCommand      node_list = parse_node_list(nodes)      cap = new_capistrano -    cap.logger = LeapCli::Logger.new(:level => LeapCli.log_level) +    cap.logger = LeapCli::Logger.new(:level => [LeapCli.log_level,3].min)      user = options[:user] || 'root'      cap.set :user, user      cap.set :ssh_options, ssh_options # ssh options common to all nodes  | 
