vagrant-smartos-guest 0.0.1.pre.2 → 0.0.1.pre.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/lib/vagrant/smartos/guest/cap/rsync.rb +1 -5
- data/lib/vagrant/smartos/guest/plugin.rb +0 -5
- data/lib/vagrant/smartos/guest/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12f4eb30ed3fbf41a4f436fd0a53d94c4db53937
|
4
|
+
data.tar.gz: 9c491f9213f2c9c0bfe80bf359c943ef390a8eaa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea35ac58fd44905b45209ff3dc60f28bc1358404e4903c1e1809eb0797c2e0f43dce8f4f432b4401d631735bfc0308436ef1279ea899f9b1b4572ba32a45d72a
|
7
|
+
data.tar.gz: 50a5eaffa2d1601447b855cb4f9a36345f38bd96c9a1e87d0c33aa36a6e04f71f2b53a00946d222ff0c16e82bf338e25db0ddd6ce3bc69bfcb938779c33a7d84
|
data/README.md
CHANGED
@@ -3,6 +3,10 @@ vagrant-smartos-guest
|
|
3
3
|
|
4
4
|
Adds Vagrant guest detection and guest capabilities for SmartOS.
|
5
5
|
|
6
|
+
This plugin is superceded by [this pull request](https://github.com/mitchellh/vagrant/pull/3102),
|
7
|
+
which adds SmartOS guest detection directly into Vagrant. At the
|
8
|
+
time of this writing (Vagrant 1.5), it has not yet been released.
|
9
|
+
|
6
10
|
## Installation
|
7
11
|
|
8
12
|
If using a development install of Vagrant, add the following to your
|
@@ -7,7 +7,7 @@ module Vagrant
|
|
7
7
|
machine.communicate.test("which rsync")
|
8
8
|
end
|
9
9
|
|
10
|
-
def self.
|
10
|
+
def self.rsync_pre(machine, folder_opts)
|
11
11
|
username = machine.ssh_info[:username]
|
12
12
|
sudo = machine.config.smartos.suexec_cmd
|
13
13
|
|
@@ -16,10 +16,6 @@ module Vagrant
|
|
16
16
|
comm.execute("#{sudo} chown -R #{username} '#{folder_opts[:guestpath]}'")
|
17
17
|
end
|
18
18
|
end
|
19
|
-
|
20
|
-
def self.rsync_pre(machine, folder_opts)
|
21
|
-
rsync_install(machine, folder_opts)
|
22
|
-
end
|
23
19
|
end
|
24
20
|
end
|
25
21
|
end
|