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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dee092fcabd9dfaf6d67050e20c22dc6ff4b905b
4
- data.tar.gz: bf7bbca5e49a6165625955057517bab2eb02ac32
3
+ metadata.gz: 12f4eb30ed3fbf41a4f436fd0a53d94c4db53937
4
+ data.tar.gz: 9c491f9213f2c9c0bfe80bf359c943ef390a8eaa
5
5
  SHA512:
6
- metadata.gz: eaabaeae218f672ca25b84c235459edf1e6cf55af501a62d318fe3d5d652d51c86b345e42ccb4d6f3c4dd1ce9852d0272758d48f6d0072768abfbc3cc4b4263d
7
- data.tar.gz: e7d33aabf39a63b3eb0cd084ba3b7132dcffd72bb0b38b7398c5eceb2e49aad7860220c93f0a08230e2dbe831a1ee5bb8baacdbd013f45672b8c8913f715d851
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.rsync_install(machine, folder_opts)
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
@@ -42,11 +42,6 @@ module Vagrant
42
42
  Cap::RSync
43
43
  end
44
44
 
45
- guest_capability("smartos", "rsync_install") do
46
- require_relative "cap/rsync"
47
- Cap::RSync
48
- end
49
-
50
45
  guest_capability("smartos", "rsync_pre") do
51
46
  require_relative "cap/rsync"
52
47
  Cap::RSync
@@ -1,7 +1,7 @@
1
1
  module Vagrant
2
2
  module Smartos
3
3
  module Guest
4
- VERSION = "0.0.1.pre.2"
4
+ VERSION = "0.0.1.pre.3"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-smartos-guest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.pre.2
4
+ version: 0.0.1.pre.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Saxby