commands/init: update template to use strings, not symbols
This commit is contained in:
parent
eecba611a4
commit
0f9ec27018
|
@ -19,16 +19,16 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||||
# Create a forwarded port mapping which allows access to a specific port
|
# Create a forwarded port mapping which allows access to a specific port
|
||||||
# within the machine from a port on the host machine. In the example below,
|
# within the machine from a port on the host machine. In the example below,
|
||||||
# accessing "localhost:8080" will access port 80 on the guest machine.
|
# accessing "localhost:8080" will access port 80 on the guest machine.
|
||||||
# config.vm.network :forwarded_port, guest: 80, host: 8080
|
# config.vm.network "forwarded_port", guest: 80, host: 8080
|
||||||
|
|
||||||
# Create a private network, which allows host-only access to the machine
|
# Create a private network, which allows host-only access to the machine
|
||||||
# using a specific IP.
|
# using a specific IP.
|
||||||
# config.vm.network :private_network, ip: "192.168.33.10"
|
# config.vm.network "private_network", ip: "192.168.33.10"
|
||||||
|
|
||||||
# Create a public network, which generally matched to bridged network.
|
# Create a public network, which generally matched to bridged network.
|
||||||
# Bridged networks make the machine appear as another physical device on
|
# Bridged networks make the machine appear as another physical device on
|
||||||
# your network.
|
# your network.
|
||||||
# config.vm.network :public_network
|
# config.vm.network "public_network"
|
||||||
|
|
||||||
# If true, then any SSH connections made will enable agent forwarding.
|
# If true, then any SSH connections made will enable agent forwarding.
|
||||||
# Default value: false
|
# Default value: false
|
||||||
|
@ -44,7 +44,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||||
# backing providers for Vagrant. These expose provider-specific options.
|
# backing providers for Vagrant. These expose provider-specific options.
|
||||||
# Example for VirtualBox:
|
# Example for VirtualBox:
|
||||||
#
|
#
|
||||||
# config.vm.provider :virtualbox do |vb|
|
# config.vm.provider "virtualbox" do |vb|
|
||||||
# # Don't boot with headless mode
|
# # Don't boot with headless mode
|
||||||
# vb.gui = true
|
# vb.gui = true
|
||||||
#
|
#
|
||||||
|
@ -73,7 +73,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||||
# # Managed by Puppet.\n"
|
# # Managed by Puppet.\n"
|
||||||
# # }
|
# # }
|
||||||
#
|
#
|
||||||
# config.vm.provision :puppet do |puppet|
|
# config.vm.provision "puppet" do |puppet|
|
||||||
# puppet.manifests_path = "manifests"
|
# puppet.manifests_path = "manifests"
|
||||||
# puppet.manifest_file = "site.pp"
|
# puppet.manifest_file = "site.pp"
|
||||||
# end
|
# end
|
||||||
|
@ -82,7 +82,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||||
# path, and data_bags path (all relative to this Vagrantfile), and adding
|
# path, and data_bags path (all relative to this Vagrantfile), and adding
|
||||||
# some recipes and/or roles.
|
# some recipes and/or roles.
|
||||||
#
|
#
|
||||||
# config.vm.provision :chef_solo do |chef|
|
# config.vm.provision "chef_solo" do |chef|
|
||||||
# chef.cookbooks_path = "../my-recipes/cookbooks"
|
# chef.cookbooks_path = "../my-recipes/cookbooks"
|
||||||
# chef.roles_path = "../my-recipes/roles"
|
# chef.roles_path = "../my-recipes/roles"
|
||||||
# chef.data_bags_path = "../my-recipes/data_bags"
|
# chef.data_bags_path = "../my-recipes/data_bags"
|
||||||
|
@ -103,7 +103,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||||
# HTTP instead of HTTPS depending on your configuration. Also change the
|
# HTTP instead of HTTPS depending on your configuration. Also change the
|
||||||
# validation key to validation.pem.
|
# validation key to validation.pem.
|
||||||
#
|
#
|
||||||
# config.vm.provision :chef_client do |chef|
|
# config.vm.provision "chef_client" do |chef|
|
||||||
# chef.chef_server_url = "https://api.opscode.com/organizations/ORGNAME"
|
# chef.chef_server_url = "https://api.opscode.com/organizations/ORGNAME"
|
||||||
# chef.validation_key_path = "ORGNAME-validator.pem"
|
# chef.validation_key_path = "ORGNAME-validator.pem"
|
||||||
# end
|
# end
|
||||||
|
|
Loading…
Reference in New Issue