vagrant-grid5000 0.0.1 → 0.0.2
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/README.md +3 -2
- data/lib/vagrant-grid5000/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90583046a028273efd6a60f225e58c2de47e006a
|
4
|
+
data.tar.gz: e1e0dffe6524eda53fce7c949e39c574dfcb75b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 056a7377bbe578ab52f4bdbaf4d1012f4476dbbcc89f42db756408e6d4180c8ff667fd6a310780440ed1410f09d5827f95c3bb43f655604dc089dfa797bf0ea9
|
7
|
+
data.tar.gz: c933145fc17e85f37ebd29d80d5a3a3ef4c506cc91cce80315ff68d54e153ee27f8dbfbab855a1b062315d2e7857cefa3d0c71f3370c68b3eb20016e1ccacae2
|
data/README.md
CHANGED
@@ -30,7 +30,7 @@ $ vagrant plugin install vagrant-grid5000
|
|
30
30
|
|
31
31
|
Each provider needs at least one ''box''. This does not really make sense here, so we are providing a dummy one.
|
32
32
|
```
|
33
|
-
$ vagrant box add
|
33
|
+
$ vagrant box add --name dummy https://github.com/lnussbaum/vagrant-grid5000/raw/master/dummy.box
|
34
34
|
```
|
35
35
|
|
36
36
|
Example Vagrantfile:
|
@@ -40,7 +40,8 @@ Vagrant.configure("2") do |config|
|
|
40
40
|
# Global configuration for Grid'5000 access
|
41
41
|
config.vm.provider "grid5000" do |g5k|
|
42
42
|
# cute_parameters = { :conf_file =>"config file path" }
|
43
|
-
#
|
43
|
+
# For details about allowed parameters see
|
44
|
+
# https://github.com/lnussbaum/vagrant-grid5000/blob/master/lib/vagrant-grid5000/config.rb
|
44
45
|
|
45
46
|
end
|
46
47
|
|