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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +2 -0
- data/Vagrantfile +8 -8
- data/lib/vagrant-g5k/version.rb +1 -1
- data/vagrant-g5k.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1370fb4a77bf6c0e631224ab0fec9c84427cb441
|
|
4
|
+
data.tar.gz: e49cdf1a8841a50ca853419c0be7c8b58f6090ab
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45cf8368cfed2e6eab73ce609e681b2eba1d22076227f76de0e41e1848016d69cb1649b092e2c51875c2bf3fc7a45c0cab9ef65e0834358bfaab92e7a0945425
|
|
7
|
+
data.tar.gz: 9e7a1d3a0ebf47abae11bff0edc417458751701f288066f7ca3c3748323597c1029525196183b0039ba862ecc0be3b4bfd73c1c6f59a05b7c0548cff1012cbac
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
data/Vagrantfile
CHANGED
|
@@ -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 = "
|
|
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
|
-
|
|
45
|
-
|
|
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
|
-
|
|
53
|
-
|
|
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'"
|
data/lib/vagrant-g5k/version.rb
CHANGED
data/vagrant-g5k.gemspec
CHANGED
|
@@ -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", "
|
|
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.
|
|
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:
|
|
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
|