vagrant-unificar 0.0.3 → 0.0.4
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 +4 -4
- data/.gitignore +2 -0
- data/Gemfile.lock +1 -1
- data/lib/vagrant-unificar/command.rb +2 -1
- data/lib/vagrant-unificar/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 78daaa2d7225ef254b39e87a2dd68548c2947393
|
|
4
|
+
data.tar.gz: 151c5e67a6705ae05a7dc2e1b35c9bb5e7c73870
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93a5a73be7802f534617f53f6dc314c7f970cad62409378d1c1ee8f06efb526ce3f2a5f1f72b934cb78380abf5cc1c7cd38059691e52ecb6c891087d9e53fe11
|
|
7
|
+
data.tar.gz: 2b5ff6ded994c0bd3ce6ae82266978812b7fe283d168516fe13e94945ea4910fa9d058ea135ab76d091a9fcddb030a59fee3b205cff4f518f60e991563e533ed
|
data/.gitignore
ADDED
data/Gemfile.lock
CHANGED
|
@@ -32,7 +32,7 @@ module Vagrant
|
|
|
32
32
|
|
|
33
33
|
password = machine.ui.ask("#{usuario}@#{host_ip} (no se vera el password al ser tecleado): ", {:prefix => false, :echo => false})
|
|
34
34
|
|
|
35
|
-
cmd = "echo \"#{password}\" | sshfs -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o password_stdin #{usuario}@#{host_ip}:#{local_dir} #{remote_mountpoint}"
|
|
35
|
+
cmd = "echo \"#{password}\" | sshfs -o allow_other -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o password_stdin #{usuario}@#{host_ip}:#{local_dir} #{remote_mountpoint}"
|
|
36
36
|
|
|
37
37
|
#TODO: Habilitar debug en el Vagrantfile para poder ver el comando
|
|
38
38
|
#puts cmd
|
|
@@ -43,6 +43,7 @@ module Vagrant
|
|
|
43
43
|
machine.ui.error("#{local_dir} -> #{remote_mountpoint} Imposible montar" , {:prefix => false})
|
|
44
44
|
machine.ui.info("Posibles problemas:", {:prefix => false})
|
|
45
45
|
machine.ui.info("\t-> Password esta mal escrito", {:prefix => false})
|
|
46
|
+
machine.ui.info("\t-> SSHFS no está instalado en la fisica o en la virtual", {:prefix => false})
|
|
46
47
|
machine.ui.info("\t-> Se encuentra ya montado", {:prefix => false})
|
|
47
48
|
machine.ui.info("\t-> Mounpoint no esta vacio", {:prefix => false})
|
|
48
49
|
machine.ui.info("\t-> Mounpoint no tiene los permisos correctos", {:prefix => false})
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-unificar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Raichuk
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-01-
|
|
11
|
+
date: 2016-01-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -46,6 +46,7 @@ executables: []
|
|
|
46
46
|
extensions: []
|
|
47
47
|
extra_rdoc_files: []
|
|
48
48
|
files:
|
|
49
|
+
- ".gitignore"
|
|
49
50
|
- Gemfile
|
|
50
51
|
- Gemfile.lock
|
|
51
52
|
- LICENSE.txt
|