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 +1 -1
- data/README.md +24 -16
- data/lib/vagrant-openvz/action.rb +1 -1
- data/lib/vagrant-openvz/version.rb +1 -1
- metadata +2 -2
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,32 +1,33 @@
|
|
1
|
-
#
|
1
|
+
# vagrant-openvz
|
2
2
|
|
3
|
-
|
3
|
+
[](http://badge.fury.io/rb/vagrant-openvz)
|
4
4
|
|
5
|
-
|
5
|
+
#### LINUX ONLY TECHNOLOGY.
|
6
6
|
|
7
|
-
|
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
|
-
|
9
|
+
Successfully used in combination with the following vagrant plugins:
|
13
10
|
|
14
|
-
|
11
|
+
- vagrant-omnibus
|
12
|
+
- agrant-berkshelf
|
15
13
|
|
16
|
-
##
|
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
|
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
|
-
|
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
|
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
|
-
|
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
|
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.
|
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
|
+
date: 2013-10-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|