Remove passing (default) ssh-username and -key to ansible provider.

The provider has default values, which is exactly what has been
passed here. Remove it to simplify the Vagrantfile.
This commit is contained in:
Hartmut Goebel 2014-11-27 12:13:49 +01:00
parent ebe18af66a
commit 6e1ea92fda
1 changed files with 0 additions and 10 deletions

View File

@ -23,10 +23,6 @@ NETMASK = "255.255.255.0"
BOX = 'debian-wheezy-amd64-netinst'
BOX_URL = 'https://dl.dropboxusercontent.com/u/55426468/20140317/debian-wheezy-amd64-netinst.box'
# Default username and SSH id_rsa
SSH_USERNAME = 'vagrant'
SSH_ID_RSA = '../../lib/vagrant/ssh/vagrant_insecure_id_rsa'
# Ansible configuration
ANSIBLE_INVENTORY = "ansible/inventory"
ANSIBLE_PLAYBOOK = "debops-playbooks/playbooks/site.yml"
@ -34,9 +30,6 @@ ANSIBLE_PLAYBOOK = "debops-playbooks/playbooks/site.yml"
# ---- Custom commands run on the main host ----
# Fix permissions of vagrant's insecure SSH key
File.chmod(0600, DEFAULT_SSH_ID_RSA)
# ---- Vagrant configuration ----
@ -45,9 +38,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = BOX
config.vm.box_url = BOX_URL
config.ssh.username = SSH_USERNAME
config.ssh.private_key_path = SSH_ID_RSA
config.vm.guest = :debian
config.vm.provider "virtualbox" do |vbox|