forked from dbfit/dbfit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vagrant_config_custom.rb.sample
39 lines (37 loc) · 1.73 KB
/
vagrant_config_custom.rb.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Copy this to vagrant_config_custom.rb, uncomment and customize the settings.
# If config for a given parameter is not overriden here - defaults will be used
# as defined in vagrant_config_defaults.rb
###############################################################################
## Basic parameters - for VM memory and synced folder options
###############################################################################
#CONFIG['memory'] = "2048"
#CONFIG['synced_folder_options'] = nil
#CONFIG['additional_disk1_file'] = "./disk1.vdi"
#CONFIG['additional_disk1_size'] = 10 * 1024
###############################################################################
## Advanced customization
###############################################################################
# Vagrant general config and chef settings can be overriden as shown in the
# below examples.
#
#DbFit.customize_config(:vagrant) do |config|
# config.vm.box_url = "https://github.com/2creatives/vagrant-centos/releases/download/v6.5.3/centos65-x86_64-20140116.box"
#
# # Proxy settings
# config.proxy.http = "http://my_ad_domain%5cmy_ad_user:[email protected]:80"
# config.proxy.https = "http://my_ad_domain%5cmy_ad_user:[email protected]:80"
# config.proxy.no_proxy = "localhost,127.0.0.1"
#end
#
#DbFit.customize_config(:chef) do |chef|
# chef.log_level = ENV.fetch("CHEF_LOG", "info").downcase.to_sym
#
# # Proxy settings
# chef.http_proxy = "http://myproxyserver.myorg.co.uk:80"
# chef.http_proxy_user = "my_ad_domain\\my_ad_user"
# chef.http_proxy_pass = "my_ad_password"
#
# chef.https_proxy = "http://myproxyserver.myorg.co.uk:80"
# chef.https_proxy_user = "my_ad_domain\\my_ad_user"
# chef.https_proxy_pass = "my_ad_password"
#end