Created
February 10, 2016 10:01
-
-
Save sveneisenschmidt/b5adba7e379c6b0c0741 to your computer and use it in GitHub Desktop.
Fixes the NFS problem with Alpine Linux Box "maier/alpine-3.1.3-x86_64"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo "Removing old VM" | |
vagrant destroy | |
echo "Initilaizing VM" | |
vagrant up --no-provision | |
echo "Updating dependencies" | |
echo "* Fixes NFS error" | |
vagrant ssh --command "sudo apk update && sudo apk upgrade" | |
echo "Stopping VM" | |
vagrant halt | |
echo "Starting VM" | |
vagrant up |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment