vagrant-openvz 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/Gemfile.lock CHANGED
@@ -13,7 +13,7 @@ GIT
13
13
  PATH
14
14
  remote: .
15
15
  specs:
16
- vagrant-openvz (0.0.2)
16
+ vagrant-openvz (0.0.4)
17
17
 
18
18
  GEM
19
19
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,32 +1,33 @@
1
- # Vagrant::Openvz
1
+ # vagrant-openvz
2
2
 
3
- LINUX ONLY TECHNOLOGY.
3
+ [![Gem Version](https://badge.fury.io/rb/vagrant-openvz.png)](http://badge.fury.io/rb/vagrant-openvz)
4
4
 
5
- This is primarily a provider plugin for vagrant. The provider integrates openvz with the normal actions associated with vagrant including: up, ssh, halt, destroy.
5
+ #### LINUX ONLY TECHNOLOGY.
6
6
 
7
- Successfully used in combination with the following vagrant plugins:
8
-
9
- vagrant-omnibus
10
- vagrant-berkshelf
7
+ This is provider plugin for vagrant. The provider integrates [OpenVZ](http://openvz.org/Main_Page) with the normal actions associated with vagrant including: up, ssh, halt, destroy.
11
8
 
12
- ## Credits
9
+ Successfully used in combination with the following vagrant plugins:
13
10
 
14
- Two other code bases contributed to the work involved in creating this plugin: vagrant-lxc, and vagrant itself.
11
+ - vagrant-omnibus
12
+ - agrant-berkshelf
15
13
 
16
- ## Platforms
14
+ ## Tested Platform
15
+ ##### (vagrant + vagrant-openvz + OpenVZ)
17
16
 
18
- Centos 6.4
19
- Others may work, though usability unknown as of now.
17
+ - Centos 6.4
18
+ - Others may work, though usability unknown as of now.
20
19
 
21
- ## Installation without building
20
+ ## Installation through vagrant
22
21
 
23
22
  The plugin requires that you openvz and vagrant be installed. Then run the following from the command line which will install it from rubygems.org:
24
23
 
25
- vagrant plugin install vagrant-openvz.
24
+ ```shell
25
+ vagrant plugin install vagrant-openvz
26
+ ```
26
27
 
27
28
  ## Boxes
28
29
 
29
- Boxes are bare bones and currently depend on the templates provided by OpenVZ. You can download the one tested box from "box/centos-6-x86_64/centos-6-x86_64.box" in this source repository, however on first usage the actualy template for the box will be downloaded through openvz.
30
+ Boxes are bare bones and currently depend on the templates provided by OpenVZ. You can download the one tested box from "box/centos-6-x86_64/centos-6-x86_64.box" in this source repository, however on first usage the actual template for the box will be downloaded through openvz. Subsequent usages will use the cached template. This means that the second and subsequent usages will be significantly faster.
30
31
 
31
32
  ## Building the plugin
32
33
 
@@ -34,7 +35,7 @@ Boxes are bare bones and currently depend on the templates provided by OpenVZ. Y
34
35
  2. Install bundler
35
36
  3. Navigate to the downloaded source code, and within the same folder as the "Gemfile" file run "bundle" to get depedencies.
36
37
 
37
- Reference
38
+ ##### Helpful Reference:
38
39
  * Book: Vagrant, up and running; Chapter 7; Section "Plugi-In Development Basics"
39
40
 
40
41
  ## Contributing
@@ -52,3 +53,10 @@ During development on Centos 6(.4), in order to use: "bundle exec vagrant box ad
52
53
  * Port Forwarding.
53
54
  * Improve usage of env[:ui] logging.
54
55
  * Tokenize all hardcoded text.
56
+
57
+ ## Credits
58
+
59
+ Two other code bases were studied during the creation of this plugin:
60
+
61
+ - [mitchellh/vagrant](https://github.com/mitchellh/vagrant)
62
+ - [fgrehm/vagrant-lxc](https://github.com/fgrehm/vagrant-lxc)
@@ -148,7 +148,7 @@ module VagrantPlugins
148
148
  next
149
149
  end
150
150
 
151
- b2.use Vagrant::Action::Builtin::Call, IsRunning do |env2, intern2_bldr|
151
+ intern_bldr.use Vagrant::Action::Builtin::Call, IsRunning do |env2, intern2_bldr|
152
152
  if !env2[:result]
153
153
  intern2_bldr.use Message, :not_running
154
154
  next
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Openvz
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-openvz
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: 2013-10-12 00:00:00.000000000 Z
12
+ date: 2013-10-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler