opswalrus 1.0.56 → 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: 00c706c6ebe569e50f6a10f453d7fd06295cab27ace5dda3e9df6eacd5b4503d
4
- data.tar.gz: 601c71bedb296ca074fa6b641f90821aa507636c14a4dee8b88eef328e58febf
3
+ metadata.gz: 05e243a5410629c7975deb3e42bca9b3e31dee87c7d6088003559a2808519bad
4
+ data.tar.gz: f028abada2641cf680469007aa9905c6840d1ff0f6651514083a8d49cf755b87
5
5
  SHA512:
6
- metadata.gz: 8da23d67767a131d5c76e7358837e77da95a605ff1816206c72aada88b926c13f3427bd762198d36c1320205f10c40df3b57c44c9fbe7f85e64e4a7a9f0d2869
7
- data.tar.gz: 783388c416d1dfd59d1838271d818171675c62436cbf1efc68225fd64b9f67c3a97d8c8553529ec7d1d7e536be306bc342a7c7e153d54001a93716885e59edc3
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.56)
4
+ opswalrus (1.0.57)
5
5
  activesupport (~> 7.0)
6
6
  bcrypt_pbkdf (~> 1.1)
7
7
  binding_of_caller (~> 1.0)
@@ -4,6 +4,8 @@ params:
4
4
  ...
5
5
  ssh in: :sequence do
6
6
  # ssh_noprep do
7
+ # puts params.stringify_keys!
7
8
  # desc "Running `#{params.ops_file.ops_file_path} #{params.operation_kv_args.join(' ')}` on #{to_s} (alias=#{self.alias})"
9
+ # run_ops(ops_command, ops_command_options = nil, command_arguments, in_bundle_root_dir: true, ops_prompt_for_sudo_password: false)
8
10
  _invoke_remote(params.ops_file, *params.operation_kv_args)
9
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.56"
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.56
4
+ version: 1.0.57
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Ellis