vagrant-g5k 0.9.8 → 0.9.9

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
  SHA1:
3
- metadata.gz: 8a9e7158fb0a28232d4f6fe3192e084eeaf108b0
4
- data.tar.gz: 5f370230fa6be8d380b5d533a44601d5d6495d70
3
+ metadata.gz: 1370fb4a77bf6c0e631224ab0fec9c84427cb441
4
+ data.tar.gz: e49cdf1a8841a50ca853419c0be7c8b58f6090ab
5
5
  SHA512:
6
- metadata.gz: c6be9badcea2c58faee6a889ee411747054c0f4b055be2203bced2af146cf2a05324cd947ab71265a92a948f6fb9c174a38f91dcefe5afdbb42974b9b06a8056
7
- data.tar.gz: 7c8e9585c89d6db45eba4b1f56c027208f652f21c3db1553a8424dcab3a494fee3d62e6733b10269a499374a207278c1f36d5fc2d9677dcd97ed783c3f3a6618
6
+ metadata.gz: 45cf8368cfed2e6eab73ce609e681b2eba1d22076227f76de0e41e1848016d69cb1649b092e2c51875c2bf3fc7a45c0cab9ef65e0834358bfaab92e7a0945425
7
+ data.tar.gz: 9e7a1d3a0ebf47abae11bff0edc417458751701f288066f7ca3c3748323597c1029525196183b0039ba862ecc0be3b4bfd73c1c6f59a05b7c0548cff1012cbac
@@ -1,3 +1,7 @@
1
+ # 0.9.9
2
+
3
+ * TODO
4
+
1
5
  # 0.9.8
2
6
 
3
7
  * Fix wrong monitor socket path when OAR job is killed
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Gem Version](https://badge.fury.io/rb/vagrant-g5k.svg)](https://badge.fury.io/rb/vagrant-g5k)
2
+
1
3
  > The plugin is updated frequently, this may include breaking changes.
2
4
 
3
5
  # Vagrant G5K Provider
@@ -28,7 +28,7 @@ Vagrant.configure(2) do |config|
28
28
  g5k.project_id = "test-vagrant-g5k"
29
29
 
30
30
  #g5k.site = "igrida"
31
- g5k.site = "rennes"
31
+ g5k.site = "nancy"
32
32
  g5k.username = "msimonin"
33
33
  g5k.gateway = "access.grid5000.fr"
34
34
  g5k.walltime = "01:00:00"
@@ -41,17 +41,17 @@ Vagrant.configure(2) do |config|
41
41
  }
42
42
 
43
43
  ## Bridged network : this allow VMs to communicate
44
- #g5k.net = {
45
- # :type => "bridge"
46
- #}
44
+ g5k.net = {
45
+ :type => "bridge"
46
+ }
47
47
 
48
48
  ## Nat network : VMs will only have access to the external world
49
49
  ## Forwarding ports will allow you to access services hosted inside the
50
50
  ## VM.
51
- g5k.net = {
52
- :type => "nat",
53
- :ports => ["2222-:22"]
54
- }
51
+ #g5k.net = {
52
+ # :type => "nat",
53
+ # :ports => ["2222-:22"]
54
+ #}
55
55
 
56
56
  ## OAR selection of resource
57
57
  g5k.oar = "virtual != 'none'"
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module G5K
3
- VERSION = '0.9.8'
3
+ VERSION = '0.9.9'
4
4
  end
5
5
  end
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
16
16
  s.rubyforge_project = "vagrant-g5k"
17
17
 
18
18
  s.add_runtime_dependency "iniparse", "~> 1.4", ">= 1.4.2"
19
- s.add_runtime_dependency "net-ssh", "~> 4.1.0"
19
+ s.add_runtime_dependency "net-ssh", ">= 4.1.0"
20
20
  s.add_runtime_dependency "net-scp", "~> 1.2.0"
21
21
  s.add_runtime_dependency "net-ssh-multi", "~> 1.2", ">=1.2.1"
22
22
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-g5k
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.8
4
+ version: 0.9.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthieu Simonin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-16 00:00:00.000000000 Z
11
+ date: 2018-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: iniparse
@@ -34,14 +34,14 @@ dependencies:
34
34
  name: net-ssh
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
- - - "~>"
37
+ - - ">="
38
38
  - !ruby/object:Gem::Version
39
39
  version: 4.1.0
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
- - - "~>"
44
+ - - ">="
45
45
  - !ruby/object:Gem::Version
46
46
  version: 4.1.0
47
47
  - !ruby/object:Gem::Dependency