Skip to content

Commit e7770ba

Browse files
committed
Remove dependency on dummy box
1 parent 838652b commit e7770ba

File tree

1 file changed

+3
-14
lines changed

1 file changed

+3
-14
lines changed

README.md

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,12 @@ box file for Vagrant.
3636
## Quick Start
3737

3838
After installing the plugin (instructions above), the quickest way to get
39-
started is to actually use a dummy Cloudstack box and specify all the details
40-
manually within a `config.vm.provider` block. So first, add the dummy
41-
box using any name you want:
42-
43-
```
44-
$ vagrant box add dummy https://github.com/schubergphilis/vagrant-cloudstack/raw/master/dummy.box
45-
...
46-
```
47-
48-
And then make a Vagrantfile that looks like the following, filling in
39+
started is to actually make a Vagrantfile that looks like the following, filling in
4940
your information where necessary.
5041

5142
```
5243
Vagrant.configure("2") do |config|
53-
config.vm.box = "dummy"
44+
config.vm.box = "${cloudstack.template_name}"
5445
5546
config.vm.provider :cloudstack do |cloudstack, override|
5647
cloudstack.host = "cloudstack.local"
@@ -60,7 +51,6 @@ Vagrant.configure("2") do |config|
6051
cloudstack.api_key = "AAAAAAAAAAAAAAAAAAA"
6152
cloudstack.secret_key = "AAAAAAAAAAAAAAAAAAA"
6253
63-
cloudstack.template_id = "AAAAAAAAAAAAAAAAAAA"
6454
cloudstack.service_offering_id = "AAAAAAAAAAAAAAAAAAA"
6555
cloudstack.disk_offering_id = "AAAAAAAAAAAAAAAAAAA"
6656
cloudstack.network_id = "AAAAAAAAAAAAAAAAAAA"
@@ -75,7 +65,7 @@ Or with names instead of ids:
7565

7666
```
7767
Vagrant.configure("2") do |config|
78-
config.vm.box = "dummy"
68+
config.vm.box = "${cloudstack.template_name}"
7969
8070
config.vm.provider :cloudstack do |cloudstack, override|
8171
cloudstack.host = "cloudstack.local"
@@ -85,7 +75,6 @@ Vagrant.configure("2") do |config|
8575
cloudstack.api_key = "AAAAAAAAAAAAAAAAAAA"
8676
cloudstack.secret_key = "AAAAAAAAAAAAAAAAAAA"
8777
88-
cloudstack.template_name = "GENERIC-Awesome-Linux"
8978
cloudstack.service_offering_name = "THE-BESTEST"
9079
cloudstack.disk_offering_name = "THE-LARGEST-OFFER-AVAILABLE"
9180
cloudstack.network_name = "WOW-SUCH-FAST-OFFERING"

0 commit comments

Comments
 (0)