landrush 0.15.1 → 0.15.2
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/README.md +3 -1
- data/lib/landrush/plugin.rb +1 -1
- data/lib/landrush/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7fe2d3b4f907c95908a327f488a341171abed7c7
|
|
4
|
+
data.tar.gz: c042c9e0a170414c89d76791cf879354b7900018
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 47f1270f513f430dc32b12659a9363d75ce5eb7f66283273b29de9390f7d8addc8d6b4e895161d83aad36bc73f6d8414c9d10272a80667fc7ee9455d01044ce8
|
|
7
|
+
data.tar.gz: c954f2ec4e41418b464139234ec12aeaef6de9003c27395f53b166e05a902ec3d7088402ef0f62b447f343236073950705fe4421d50f970ec79c590539d3c2b2
|
data/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Enable the plugin in your `Vagrantfile`:
|
|
|
20
20
|
|
|
21
21
|
config.landrush.enabled = true
|
|
22
22
|
|
|
23
|
-
Bring up a machine
|
|
23
|
+
Bring up a machine.
|
|
24
24
|
|
|
25
25
|
$ vagrant up
|
|
26
26
|
|
|
@@ -30,6 +30,8 @@ And you should be able to get your hostname from your host:
|
|
|
30
30
|
|
|
31
31
|
If you shut down your guest, the entries associated with it will be removed.
|
|
32
32
|
|
|
33
|
+
Landrush assigns your vm's hostname from either the vagrant config (see the `examples/Vagrantfile`) or system's actual hostname by running the `hostname` command. A default of "guest-vm" is assumed if hostname is otherwise not available.
|
|
34
|
+
|
|
33
35
|
### Dynamic entries
|
|
34
36
|
|
|
35
37
|
Every time a VM is started, its IP address is automatically detected and a DNS record is created that maps the hostname to its IP.
|
data/lib/landrush/plugin.rb
CHANGED
|
@@ -23,7 +23,7 @@ module Landrush
|
|
|
23
23
|
|
|
24
24
|
if defined?(HashiCorp::VagrantVMwarefusion)
|
|
25
25
|
hook.before(HashiCorp::VagrantVMwarefusion::Action::Network, pre_boot_actions)
|
|
26
|
-
hook.after(HashiCorp::VagrantVMwarefusion::Action::
|
|
26
|
+
hook.after(HashiCorp::VagrantVMwarefusion::Action::WaitForCommunicator, post_boot_actions)
|
|
27
27
|
end
|
|
28
28
|
|
|
29
29
|
if defined?(VagrantPlugins::Parallels)
|
data/lib/landrush/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: landrush
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.15.
|
|
4
|
+
version: 0.15.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paul Hinze
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-09-
|
|
11
|
+
date: 2014-09-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubydns
|