mirror of
https://github.com/covidpass-org/covidpass.git
synced 2025-02-23 15:07:44 +01:00
16 lines
444 B
Bash
16 lines
444 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "Checking for vagrant-vbguest plugin..."
|
||
|
vagrant plugin list | grep -e "vagrant-vbguest" > /dev/null
|
||
|
|
||
|
if [ $? -eq 0 ]; then
|
||
|
echo "vagrant-vbguest found! Skipping install..."
|
||
|
else
|
||
|
echo "vagrant-vbguest plugin not detected, installing now..."
|
||
|
vagrant plugin install vagrant-vbguest
|
||
|
fi
|
||
|
|
||
|
echo "Starting Vagrant VM..."
|
||
|
vagrant up
|
||
|
|
||
|
echo "Environment setup complete! You should now be able to 'vagrant ssh' into the running VM"
|