Skip to content
This repository was archived by the owner on Oct 25, 2018. It is now read-only.

Commit 49988a1

Browse files
author
Giuseppe Morelli
committed
[dev] readme
1 parent 27cd88b commit 49988a1

File tree

1 file changed

+36
-35
lines changed

1 file changed

+36
-35
lines changed

README.md

Lines changed: 36 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,18 @@ This is a Multi Machine system for vagrant with Virtualbox provider.
1616

1717
## Requirements
1818
- virtualbox 5.x
19-
- vagrant >1.8.4
19+
- vagrant > 1.8.4
2020
- (optional)vagrant HostsUpdater plugin: https://github.com/cogitatio/vagrant-hostsupdater
2121
install with `vagrant plugin install vagrant-hostsupdater`
2222
- (in case of error of shared folder mount errors) vagrant vagrant-vbguest plugin (install with the command `vagrant plugin install vagrant-vbguest`)
2323

2424
## Vagrant boxes created
2525
See `BOXES.md` for software installed list.
2626

27-
- giuseppemorelli/lamp-stack 1.0.1 (debian jessie 8.5)
27+
- giuseppemorelli/lamp-stack 1.0.1 (debian jessie 8.6) (deprecated)
2828
- giuseppemorelli/lamp-stack 1.0.2 (debian jessie 8.6)
2929
- giuseppemorelli/lamp-stack 1.0.3 (debian jessie 8.6)
30+
- giuseppemorelli/lamp-stack 1.1.0 (debian stretch 9.3)
3031

3132
## How to use
3233
- download latest version [https://github.com/gmdotnet/vagrant-multi-machine-virtualbox/releases](https://github.com/gmdotnet/vagrant-multi-machine-virtualbox/releases)
@@ -49,50 +50,50 @@ Tab indent: 4 spaces or tab
4950
| hostname | string | Hostname of the machine | |
5051
| | | | |
5152
| **box** | | | |
52-
| box > name | string | Name of the public vagrant box | Need to be publish in https://app.vagrantup.com/boxes/search |
53-
| box > version | version x.y.z | Vagrant box version | Leave empty if you want to get latest version |
54-
| box > check_update | boolean | Check for update of your box | |
53+
| box > name | string | Name of the public vagrant box | Need to be publish in https://app.vagrantup.com/boxes/search |
54+
| box > version | version x.y.z | Vagrant box version | Leave empty if you want to get latest version |
55+
| box > check_update | boolean | Check for update of your box | |
5556
| | | | |
5657
| private_ip | ipv4 | Internal ipv4 of the machine | Don't use same subnet of your computer |
57-
| ram | int | Amount of ram to allocate | |
58-
| cpu | int | Amount of cpu to use | |
59-
| **extra_hard_disk** | | | |
60-
| extra_hard_disk > create | boolean | Flag to create new extra hard disk | |
61-
| extra_hard_disk > filepath | string | Relative or absolute path for new extra hard disk | |
62-
| extra_hard_disk > size | int | Size in GB | |
58+
| ram | int | Amount of ram to allocate | |
59+
| cpu | int | Amount of cpu to use | |
60+
| **extra_hard_disk** | | | |
61+
| extra_hard_disk > create | boolean | Flag to create new extra hard disk | |
62+
| extra_hard_disk > filepath | string | Relative or absolute path for new extra hard disk | |
63+
| extra_hard_disk > size | int | Size in GB | |
6364
| | | | |
6465
| **provision** | | | |
65-
| provision > ansible > enable | boolean | Enable Ansible provisioning | |
66-
| provision > ansible > playbook_path | string | Relative path from Vagrantfile of your Ansible Playbook | |
67-
| provision > script > enable | boolean | Enable script provisioning | |
68-
| provision > script > path | string | Relative path from Vagrantfile of your script | |
66+
| provision > ansible > enable | boolean | Enable Ansible provisioning | |
67+
| provision > ansible > playbook_path | string | Relative path from Vagrantfile of your Ansible Playbook | |
68+
| provision > script > enable | boolean | Enable script provisioning | |
69+
| provision > script > path | string | Relative path from Vagrantfile of your script | |
6970
| | | | |
70-
| **plugins** | | | |
71-
| plugins > hostsupdater > enable | boolean | Enable or not hostsupdater plugin | https://github.com/cogitatio/vagrant-hostsupdater |
72-
| plugins > hostsupdater > permanent | boolean | Your changes to /etc/hosts will be permanent | Only if you destroy the machine, entries in /etc/hosts will be removed |
73-
| plugins > hostsupdater > aliases | array | domain aliases for the same ip | Leave blank for no aliases |
71+
| **plugins** | | | |
72+
| plugins > hostsupdater > enable | boolean | Enable or not hostsupdater plugin | https://github.com/cogitatio/vagrant-hostsupdater |
73+
| plugins > hostsupdater > permanent | boolean | Your changes to /etc/hosts will be permanent | Only if you destroy the machine, entries in /etc/hosts will be removed |
74+
| plugins > hostsupdater > aliases | array | domain aliases for the same ip | Leave blank for no aliases |
7475
| | | | |
7576
| **share** | | | |
76-
| share > folder | group field | Group of shared folder via virtualbox system | https://www.vagrantup.com/docs/synced-folders/basic_usage.html |
77-
| share > folder > host_folder | string | Path of the folder on your machine | |
78-
| share > folder > vagrant_folder | string | Path of the folder inside vagrant machine | |
79-
| share > folder > owner | string | Change owner folder inside vagrant machine | Default: vagrant |
80-
| share > folder > group | string | Change owner folder inside vagrant machine | Default: vagrant |
77+
| share > folder | group field | Group of shared folder via virtualbox system | https://www.vagrantup.com/docs/synced-folders/basic_usage.html |
78+
| share > folder > host_folder | string | Path of the folder on your machine | |
79+
| share > folder > vagrant_folder | string | Path of the folder inside vagrant machine | |
80+
| share > folder > owner | string | Change owner folder inside vagrant machine | Default: vagrant |
81+
| share > folder > group | string | Change owner folder inside vagrant machine | Default: vagrant |
8182
| | | | |
8283
| **rsync** | | | |
83-
| rsync > folder | group field | Group of sync folder via rsync | |
84-
| rsync > folder > host_folder | string | Path of the folder on your machine | |
85-
| rsync > folder > vagrant_folder | string | Path of the folder inside vagrant machine | |
86-
| rsync > folder > owner | string | Change owner folder inside vagrant machine | Default: vagrant |
87-
| rsync > folder > group | string | Change owner folder inside vagrant machine | Default: vagrant |
88-
| rsync > folder > options | group field | Rsync parameters. One per line | https://www.vagrantup.com/docs/synced-folders/rsync.html |
89-
| rsync > folder > exclude | group field | Exclude folders from rsync | https://www.vagrantup.com/docs/synced-folders/rsync.html#rsync__exclude |
84+
| rsync > folder | group field | Group of sync folder via rsync | |
85+
| rsync > folder > host_folder | string | Path of the folder on your machine | |
86+
| rsync > folder > vagrant_folder | string | Path of the folder inside vagrant machine | |
87+
| rsync > folder > owner | string | Change owner folder inside vagrant machine | Default: vagrant |
88+
| rsync > folder > group | string | Change owner folder inside vagrant machine | Default: vagrant |
89+
| rsync > folder > options | group field | Rsync parameters. One per line | https://www.vagrantup.com/docs/synced-folders/rsync.html |
90+
| rsync > folder > exclude | group field | Exclude folders from rsync | https://www.vagrantup.com/docs/synced-folders/rsync.html#rsync__exclude |
9091
| | | | |
9192
| **nfs** | | | |
92-
| nfs > folder | group field | Group of sync folder via nfs | https://www.vagrantup.com/docs/synced-folders/nfs.html |
93-
| nfs > folder > host_folder | string | Path of the folder on your machine | |
94-
| nfs > folder > vagrant_folder | string | Path of the folder inside vagrant machine | |
95-
| nfs > folder > options | group field | Nfs options. One per line | https://www.vagrantup.com/docs/synced-folders/nfs.html#nfs-synced-folder-options |
93+
| nfs > folder | group field | Group of sync folder via nfs | https://www.vagrantup.com/docs/synced-folders/nfs.html |
94+
| nfs > folder > host_folder | string | Path of the folder on your machine | |
95+
| nfs > folder > vagrant_folder | string | Path of the folder inside vagrant machine | |
96+
| nfs > folder > options | group field | Nfs options. One per line | https://www.vagrantup.com/docs/synced-folders/nfs.html#nfs-synced-folder-options |
9697

9798
## Find out GMdotnet Vagrant projects
9899
- Vagrant multi machine for **Amazon AWS**: [vagrant-multi-machine-amazon-aws](https://github.com/gmdotnet/vagrant-multi-machine-amazon-aws)

0 commit comments

Comments
 (0)