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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c1b54b8e306b73e5fb2c4410650bb0c2b202ccc
|
4
|
+
data.tar.gz: ddec5a3bad0b3caddf8cfabd6f472d9a4f6ada7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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",
|