vagrant_commands 0.0.8 → 0.0.9

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
  SHA1:
3
- metadata.gz: 7e5aa0045e056c74ebd0e89fc0adba431f0edc1d
4
- data.tar.gz: 2b5dd34ac42d2adc0bdc5269316b320117de0400
3
+ metadata.gz: 8898e256eb727cc1df5efb5216d8ad8b127d9eca
4
+ data.tar.gz: dcdcbaa82793d35e715c7554f0fdf0769de21bc6
5
5
  SHA512:
6
- metadata.gz: 0122176dfb1c70598fc0f685af083e991e15393a31a13ad98d9947f134ef52fbd6cfed776aedbe2026ea50d74b1d93465546a0fead177d21c740f340abe41590
7
- data.tar.gz: fe995ad3438eea38c2751c64d27341916fd7fae20d5072ba315f7cf226be816df14de8002091ae30a4de1617c1aee99ca0e0fe9b2bad5b68b38b080f11a6fd8d
6
+ metadata.gz: 29e0b9fb131be8afe4fb8c5044ea5950e9bd9c2efbb7d1a879009262a8f217db0de800beac6ab8f2cdd9bc62aab4ed1c6788bbcda90b66e49f91f2e1345d6b98
7
+ data.tar.gz: 4c07f6e0529574ba45260ae87a8d5753021eb50fc49a40659a54466fcfe049017741ab146c52e94f1a46794c5ee45faefa32868a3882872fc04021df1889c2fc
@@ -4,8 +4,8 @@ module Shell
4
4
  keyPath = get_ssh_details(/(?<=IdentityFile ).*/,box_name)
5
5
  hostName = get_ssh_details(/(?<=HostName ).*/,box_name)
6
6
  userName = get_ssh_details(/(?<=User ).*/,box_name)
7
- puts "ssh -v -o StrictHostKeyChecking=no #{userName}@#{hostName} -p #{portNum} -i #{keyPath} \"#{command}\""
8
- puts `ssh -v -o StrictHostKeyChecking=no #{userName}@#{hostName} -p #{portNum} -i #{keyPath} \"#{command}\"`
7
+ puts "ssh -o StrictHostKeyChecking=no #{userName}@#{hostName} -p #{portNum} -i #{keyPath} \"#{command}\""
8
+ puts `ssh -o StrictHostKeyChecking=no #{userName}@#{hostName} -p #{portNum} -i #{keyPath} \"#{command}\"`
9
9
  end
10
10
 
11
11
  def self.get_ssh_details(regex, box_name)
@@ -1,3 +1,3 @@
1
1
  module VagrantCommands
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant_commands
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nic Jackson