vagrant-ignition 0.0.2 → 0.0.3
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 +1 -1
- data/lib/vagrant-ignition/config.rb +1 -1
- data/vagrant-ignition.gemspec +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: 4942874de64e38acf92a05033b4c8aad6c6edbed
|
|
4
|
+
data.tar.gz: dbe8f6874ac0463ba0344f05e3cb40746499b59d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c28b63045c63296f31993b60134d447f8f2b3aecb90123a8ae2695058822c41a650bd73b7b810a7d29e68b0f92c0cf2b951e2a5b092d6d2791447e9d1c1969b5
|
|
7
|
+
data.tar.gz: ace40733ccf6cbd41f46b28f0eee0d4bca6e1e5d4ad5048eaeaa3760e5039190e9b892068a2c6cde0df97a9fc49bb5a8b738ee222429d657122bb45c1005078d
|
data/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Build the app using:
|
|
|
9
9
|
|
|
10
10
|
And install it with:
|
|
11
11
|
|
|
12
|
-
$ vagrant plugin install vagrant-ignition-0.0.
|
|
12
|
+
$ vagrant plugin install vagrant-ignition-0.0.3.gem
|
|
13
13
|
|
|
14
14
|
## Usage
|
|
15
15
|
To use this plugin, a couple of config options must be set in a project's Vagrantfile config section.
|
|
@@ -23,7 +23,7 @@ module VagrantPlugins
|
|
|
23
23
|
@enabled = false if @enabled == UNSET_VALUE
|
|
24
24
|
@path = nil if @path == UNSET_VALUE
|
|
25
25
|
@drive_name = "config" if @drive_name == UNSET_VALUE
|
|
26
|
-
@drive_root = "./" if @
|
|
26
|
+
@drive_root = "./" if @drive_root == UNSET_VALUE
|
|
27
27
|
@hostname = nil if @hostname == UNSET_VALUE
|
|
28
28
|
@ip = nil if @ip == UNSET_VALUE
|
|
29
29
|
end
|
data/vagrant-ignition.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ require "vagrant-ignition/version"
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "vagrant-ignition"
|
|
8
|
-
spec.version = "0.0.
|
|
8
|
+
spec.version = "0.0.3"
|
|
9
9
|
spec.authors = ["Alexander Pavel", "Alex Crawford"]
|
|
10
10
|
spec.email = ["alex.pavel@coreos.com", "alex.crawford@coreos.com"]
|
|
11
11
|
|