You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
416 B
Bash
10 lines
416 B
Bash
#!/bin/sh
|
|
|
|
export PYTHONUNBUFFERED=1
|
|
export ANSIBLE_FORCE_COLOR=true
|
|
export ANSIBLE_HOST_KEY_CHECKING=false
|
|
export ANSIBLE_SSH_ARGS='-o UserKnownHostsFile=/dev/null -o ControlMaster=auto -o ControlPersist=60s'
|
|
export ANSIBLE_DEPRECATION_WARNINGS=false
|
|
|
|
ansible-playbook --private-key=.vagrant/machines/default/virtualbox/private_key -u vagrant -i .vagrant/provisioners/ansible/inventory/vagrant_ansible_inventory $@
|