Top "Vagrant-provision" questions

Provisioners in Vagrant allow you to automatically install software, alter configurations, and more on the machine as part of the vagrant up process.

Vagrant execute script or command after every guest restart (vagrant up)

I know about the provisioning script, but this is a different script that I am asking about. I want a …

linux vagrant vagrant-provision
ansible: combine loop (until) with conditional (when)

I'm trying to install and configure an application server in a local vagrant vm. For the provisioning Ansible is used. …

ansible vagrant-provision
Is it possible to restart a machine when provisioning a machine using Vagrant and pickup where the script left off?

I was reading a tutorial in bash where they said to restart the machine, there was no option to restart …

bash vagrant vagrant-provision
Best way to install docker on Vagrant

I want to create several VMs that have docker pre-installed. What is the best/recommended way to go about this? …

docker vagrant vagrant-provision
Importing/adding a yum .repo file using Ansible

I'm trying to install MariaDB (or any software) from a custom repository using Ansible but I am not sure how …

ansible yum vagrant-provision
Vagrant not installing pip during provision

Here is my bootstrap.sh: #!/usr/bin/env bash apt-get update apt-get install -y apache2 apt-get install python-pip if ! [ -L /…

python bash vagrant vagrantfile vagrant-provision