SUBNET = settings['subnet']
BOX = settings['vagrant_box']
MEMORY = settings['memory']
+STORAGECTL = settings['vagrant_storagectl']
ansible_provision = proc do |ansible|
ansible.playbook = 'site.yml'
# It is set when the base box is made in our case ubuntu/trusty64.
# Be careful while changing the box.
vb.customize ['storageattach', :id,
- '--storagectl', 'SATAController',
+ '--storagectl', STORAGECTL,
'--port', 3 + d,
'--device', 0,
'--type', 'hdd',
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: ubuntu/trusty64
+vagrant_storagectl: 'SATAController'