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 CHANGED
@@ -15,3 +15,6 @@ spec/reports
15
15
  test/tmp
16
16
  test/version_tmp
17
17
  tmp
18
+ .swp
19
+ .ruby-version
20
+ .rbenv-gemsets
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ language: ruby
2
+ before_install:
3
+ - gem install bundler -v '1.5.2'
4
+ rvm:
5
+ - 1.9.3
6
+ - 1.9.2
7
+ - 2.0.0
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # vagrant-vyatta
2
+ [![Build Status](https://travis-ci.org/higebu/vagrant-vyatta.png)](https://travis-ci.org/higebu/vagrant-vyatta)
2
3
 
3
- Vagrant-vyatta is a [Vagrant](http://www.vagrantup.com) plugin that adds a [Vyatta](http://www.vyatta.org/) support to Vagrant.
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 box add vyatta http://higebu.com/box/vyatta-livecd_VC6.5R1_amd64_virtualbox.box
21
- $ vagrant init vyatta
21
+ $ vagrant init higebu/vyos-1.0.2
22
22
  $ vagrant up
23
23
  ```
24
24
 
@@ -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
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module GuestVyatta
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.4"
4
4
  end
5
5
  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.3
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-01-29 00:00:00.000000000 Z
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: 2574666974658011711
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.