vagrant-vmck 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/Dockerfile +13 -0
- data/Readme.md +5 -6
- data/lib/vagrant-vmck/action/create.rb +1 -1
- data/lib/vagrant-vmck/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 96d882efc34e6bd024456bc684859a11a75e3e8aac0a644ef12b99d0b9ee3fd9
|
|
4
|
+
data.tar.gz: 85a954591bca1afd04d851004491cfa687a84f3155b32b1b3bd315ed023e2d7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd47ecd14c1a764678fc9c00d73dcb716159e9b9c5fb0da73418d6fbb4427bc4e1ced1119e3efd8519547b739a20aa1641dce1f28031a70f8cc112e7f768b5e4
|
|
7
|
+
data.tar.gz: 60d41cb0846f94ed1d1463b08c66384805e9467a3a5f83fd724ec22dd8c9b16ba05cc7d637730ee8b50f6d658ff1d1511ac5b8e1742db96eb00f26056bda9c1a
|
data/Dockerfile
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
FROM debian:stretch
|
|
2
|
+
|
|
3
|
+
RUN set -e \
|
|
4
|
+
&& apt-get update \
|
|
5
|
+
&& apt-get install -y procps curl rsync kmod ssh \
|
|
6
|
+
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
7
|
+
|
|
8
|
+
RUN set -e \
|
|
9
|
+
&& curl -O https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.deb \
|
|
10
|
+
&& dpkg -i vagrant_2.2.4_x86_64.deb \
|
|
11
|
+
&& rm vagrant_2.2.4_x86_64.deb
|
|
12
|
+
|
|
13
|
+
RUN vagrant plugin install vagrant-vmck
|
data/Readme.md
CHANGED
|
@@ -8,12 +8,11 @@
|
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
```shell
|
|
14
|
-
$ vagrant plugin install vagrant-vmck
|
|
15
|
-
```
|
|
16
|
-
|
|
11
|
+
1. [Install Vagrant](https://www.vagrantup.com/docs/installation/)
|
|
12
|
+
2. Install the plugin:
|
|
13
|
+
```shell
|
|
14
|
+
$ vagrant plugin install vagrant-vmck
|
|
15
|
+
```
|
|
17
16
|
|
|
18
17
|
## Usage
|
|
19
18
|
|
|
@@ -19,7 +19,7 @@ module VagrantPlugins
|
|
|
19
19
|
env[:machine].id = id
|
|
20
20
|
|
|
21
21
|
env[:ui].info("Vmck waiting for job #{id} to be ready ...")
|
|
22
|
-
retryable(:tries =>
|
|
22
|
+
retryable(:tries => 3600, :sleep => 1) do
|
|
23
23
|
next if env[:interrupted]
|
|
24
24
|
raise 'not ready' unless client.get(id)['ssh']
|
|
25
25
|
end
|
data/lib/vagrant-vmck/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-vmck
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Morega
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-06-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -88,6 +88,7 @@ extensions: []
|
|
|
88
88
|
extra_rdoc_files: []
|
|
89
89
|
files:
|
|
90
90
|
- ".gitignore"
|
|
91
|
+
- Dockerfile
|
|
91
92
|
- Gemfile
|
|
92
93
|
- LICENSE.txt
|
|
93
94
|
- Readme.md
|