vagrant-vyatta 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.
- data/.gitignore +3 -0
- data/.travis.yml +7 -0
- data/README.md +3 -3
- data/lib/vagrant-vyatta/guest.rb +1 -1
- data/lib/vagrant-vyatta/version.rb +1 -1
- metadata +5 -4
data/.gitignore
CHANGED
data/.travis.yml
ADDED
data/README.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# vagrant-vyatta
|
2
|
+
[](https://travis-ci.org/higebu/vagrant-vyatta)
|
2
3
|
|
3
|
-
Vagrant-vyatta is a [Vagrant](http://www.vagrantup.com) plugin that adds
|
4
|
+
Vagrant-vyatta is a [Vagrant](http://www.vagrantup.com) plugin that adds [Vyatta](http://www.vyatta.org/) and [VyOS](http://vyos.net/wiki/Main_Page) support to Vagrant.
|
4
5
|
|
5
6
|
This plugin fixes following features.
|
6
7
|
|
@@ -17,8 +18,7 @@ $ vagrant plugin install vagrant-vyatta
|
|
17
18
|
## Usage
|
18
19
|
|
19
20
|
```
|
20
|
-
$ vagrant
|
21
|
-
$ vagrant init vyatta
|
21
|
+
$ vagrant init higebu/vyos-1.0.2
|
22
22
|
$ vagrant up
|
23
23
|
```
|
24
24
|
|
data/lib/vagrant-vyatta/guest.rb
CHANGED
@@ -6,7 +6,7 @@ module VagrantPlugins
|
|
6
6
|
module GuestVyatta
|
7
7
|
class Guest < VagrantPlugins::GuestDebian::Guest
|
8
8
|
def detect?(machine)
|
9
|
-
machine.communicate.test("cat /etc/issue | grep 'Vyatta'")
|
9
|
+
machine.communicate.test("cat /etc/issue | grep -e 'Vyatta' -e 'VyOS'")
|
10
10
|
end
|
11
11
|
end
|
12
12
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-vyatta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-03-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -51,6 +51,7 @@ extensions: []
|
|
51
51
|
extra_rdoc_files: []
|
52
52
|
files:
|
53
53
|
- .gitignore
|
54
|
+
- .travis.yml
|
54
55
|
- Gemfile
|
55
56
|
- LICENSE
|
56
57
|
- README.md
|
@@ -78,7 +79,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
78
79
|
version: '0'
|
79
80
|
segments:
|
80
81
|
- 0
|
81
|
-
hash:
|
82
|
+
hash: -3270106950643762849
|
82
83
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
84
|
none: false
|
84
85
|
requirements:
|
@@ -87,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
88
|
version: 1.8.23
|
88
89
|
requirements: []
|
89
90
|
rubyforge_project: vagrant-vyatta
|
90
|
-
rubygems_version: 1.8.23
|
91
|
+
rubygems_version: 1.8.23.2
|
91
92
|
signing_key:
|
92
93
|
specification_version: 3
|
93
94
|
summary: A small gem that adds Vyatta guest support to vagrant.
|