vagrant-rsync-only-changed 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fb8219a78137d8909d78d3e8a17a8322d2d81f47
4
- data.tar.gz: 24fd186dcdf8baee45257022da0328672b884a8a
3
+ metadata.gz: 3c1b54b8e306b73e5fb2c4410650bb0c2b202ccc
4
+ data.tar.gz: ddec5a3bad0b3caddf8cfabd6f472d9a4f6ada7c
5
5
  SHA512:
6
- metadata.gz: c2b9fa4677e1c298b6f625dee8558791fb7d019c6929f3aab80c730a9f3dbbe8bcdb9b825c7ad5e47e30b209eadf6afd96392a5b07441ecf38f155e6aefedbf0
7
- data.tar.gz: 2e2a54fed380fcc96c64fe55e20f17c2f1832ed34c85da1873abe9ee490c0c1a1838e785e100dc132c04507993688d6461bc00418c45ccfe54a585c479dec7cf
6
+ metadata.gz: 4f71f64215c216f2952b0d0f21fc1d4309fcbf795f018850573c3162fa3a45c50b571f744aaea27d134b9fbf336e44715985362be2a979db5af85531af48df2e
7
+ data.tar.gz: 3bce938249481b06b6c2c8fbea9598ac64821f88d9cbfe50a806863cfd095bcf436cf62d038aa3fb711b88884d529e18e170b0bd3ef5d99af8d3cdfe5389c9f6
@@ -77,17 +77,9 @@ module VagrantPlugins
77
77
  proxy_command = "-o ProxyCommand='#{ssh_info[:proxy_command]}' "
78
78
  end
79
79
 
80
- # Create the path for the control sockets. We used to do this
81
- # in the machine data dir but this can result in paths that are
82
- # too long for unix domain sockets.
83
- controlpath = File.join(Dir.tmpdir, "ssh.#{rand(1000)}")
84
-
85
80
  rsh = [
86
81
  "ssh -p #{ssh_info[:port]} " +
87
82
  proxy_command +
88
- "-o ControlMaster=auto " +
89
- "-o ControlPath=#{controlpath} " +
90
- "-o ControlPersist=10m " +
91
83
  "-o StrictHostKeyChecking=no " +
92
84
  "-o IdentitiesOnly=true " +
93
85
  "-o UserKnownHostsFile=/dev/null",
@@ -45,7 +45,6 @@ module VagrantPlugins
45
45
 
46
46
  command "rsync-auto-only-changed" do
47
47
  is_usable = usable(raise_error=true)
48
- puts is_usable
49
48
  setup_i18n
50
49
  require_relative "command/rsync_auto"
51
50
  RsyncOnlyChangedAuto
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module RsyncOnlyChanged
3
- VERSION = "0.9.0"
3
+ VERSION = "0.9.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-rsync-only-changed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Flávio Botelho