opswalrus 1.0.55 → 1.0.57

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 886446171ec646a644e8c99be6b4a5de56f502f54336d292168c9fe0e4411028
4
- data.tar.gz: adc3c9c5ea70bb95361ba7797eac02b62a1e9a003ba6db5fcdd6e39faa7f5bf4
3
+ metadata.gz: 05e243a5410629c7975deb3e42bca9b3e31dee87c7d6088003559a2808519bad
4
+ data.tar.gz: f028abada2641cf680469007aa9905c6840d1ff0f6651514083a8d49cf755b87
5
5
  SHA512:
6
- metadata.gz: ecb4f917b14b27dc08435d09f44b242144bf3950bd613472d467927b8929cf5083825325f0b595b792647e005fc3e85b4702297cb722135b464bd11c5dc6c6bc
7
- data.tar.gz: 447e67ec4a89559430ead09b63262a669998b03dfb0e862693440fbe94a7b6392ece30fdce7f72b755e49bd8fafe672bb430b56a2725cf1f6bad454b985655a7
6
+ metadata.gz: 103c5e11c03f8c639e6bd744a140b6d665054fc016c20c5e6544a447a551779d5eb366049c04f22da0e858bf751575f912f2af0b05263629abbda531f62e6a7f
7
+ data.tar.gz: 553dcb9977914035d3af74b87778e6bbd61903d22bc74eda41ceffad31f9a612564f9c35fb725eda413effe8168e7e31b24ddf6d2f271d282deeaeb439daa10f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- opswalrus (1.0.55)
4
+ opswalrus (1.0.57)
5
5
  activesupport (~> 7.0)
6
6
  bcrypt_pbkdf (~> 1.1)
7
7
  binding_of_caller (~> 1.0)
@@ -4,8 +4,8 @@ params:
4
4
  ...
5
5
  ssh in: :sequence do
6
6
  # ssh_noprep do
7
- puts params.stringify_keys!
8
- desc "Running `#{params.ops_file.ops_file_path} #{params.operation_kv_args.join(' ')}` on #{to_s} (alias=#{self.alias})"
7
+ # puts params.stringify_keys!
8
+ # desc "Running `#{params.ops_file.ops_file_path} #{params.operation_kv_args.join(' ')}` on #{to_s} (alias=#{self.alias})"
9
9
  # run_ops(ops_command, ops_command_options = nil, command_arguments, in_bundle_root_dir: true, ops_prompt_for_sudo_password: false)
10
10
  _invoke_remote(params.ops_file, *params.operation_kv_args)
11
11
  end
data/lib/opswalrus/app.rb CHANGED
@@ -266,7 +266,7 @@ module OpsWalrus
266
266
  internal_ops_file = OpsFile.new(self, __FILE__.to_pathname.dirname.join("_run_remote.ops"))
267
267
 
268
268
  op = OperationRunner.new(self, internal_ops_file)
269
- result = op.run([], params_json_hash: {ops_file: ops_file, operation_kv_args: operation_kv_args})
269
+ result = op.run([], params_json_hash: {ops_file: ops_file, operation_kv_args: operation_kv_args}.stringify_keys)
270
270
  exit_status = result.exit_status
271
271
 
272
272
  debug "Op exit_status"
@@ -100,7 +100,7 @@ module OpsWalrus
100
100
 
101
101
  stdout, stderr, exit_status = [sshkit_cmd.full_stdout, sshkit_cmd.full_stderr, sshkit_cmd.exit_status]
102
102
 
103
- if print_report
103
+ if print_report && App.instance.info?
104
104
  if exit_status == 0
105
105
  puts "Bootstrap success - #{to_s} (alias=#{self.alias})"
106
106
  else
@@ -1,3 +1,3 @@
1
1
  module OpsWalrus
2
- VERSION = "1.0.55"
2
+ VERSION = "1.0.57"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opswalrus
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.55
4
+ version: 1.0.57
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Ellis