Skip to content

Commit

Permalink
Removed Server provisioning its not used anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
dthielking committed Mar 29, 2017
1 parent 05d9d1c commit 3a1cd81
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Vagrant.configure("2") do |config|
v.customize ["modifyvm", :id, "--accelerate3d", "on"]
# Set Video Memory to 128MB
v.customize ["modifyvm", :id, "--vram", "128"]

# Install latest Ansible on Debian Jessie 8
# with shell provisioner
config.vm.provision "shell", path: "shell/install_latest_ansible.sh"
Expand All @@ -34,23 +35,4 @@ Vagrant.configure("2") do |config|
end
end
end

config.vm.define "server" do |server|
config.vm.provider "virtualbox" do |v|
# Set hostname for vm
config.vm.hostname = "#{suffix}-server.#{fqdn}"
# Set VM name
v.name = "#{suffix}-server.#{fqdn}"
# Display the VirtualBox GUI when booting the machine
v.gui = false
# Customize the amount of memory on the VM:
v.memory = "2048"

# Provision of Linux Gui with ansible
config.vm.provision "ansible" do |ansible|
ansible.playbook = "ansible/server/main.yaml"
ansible.verbose = "v"
end
end
end
end

0 comments on commit 3a1cd81

Please sign in to comment.