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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f7e8ae4a28baa23a76f90508497f335721298e5f5d007381fa78c96a503c944c
4
- data.tar.gz: 5858bdb0ae26b6987df86fdc13cfa0d562d71867c4f187e9421467644965398e
3
+ metadata.gz: 96d882efc34e6bd024456bc684859a11a75e3e8aac0a644ef12b99d0b9ee3fd9
4
+ data.tar.gz: 85a954591bca1afd04d851004491cfa687a84f3155b32b1b3bd315ed023e2d7c
5
5
  SHA512:
6
- metadata.gz: 17de344ba6754ce1d90c34b005d8cfc64ab6bc6593558b016b58ff37215c107e4e2bc17db80f02a41094d6d07f9091e25c9ddeca8d96b534d1be4406cec4514d
7
- data.tar.gz: bba90b6473f021a35cbd18d74cd1fefa8189eda75654c31c56b299f99af56b6738c77d8a80b33ae12582df201f84436f5648f2a61c94501603c9f8f7ebdd398b
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
- Add this line to your application's Gemfile:
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 => 120, :sleep => 1) do
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
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Vmck
3
- VERSION = "0.0.2"
3
+ VERSION = "0.0.3"
4
4
  end
5
5
  end
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.2
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-05-27 00:00:00.000000000 Z
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