Skip to content

Instantly share code, notes, and snippets.

@sveneisenschmidt
Created February 10, 2016 10:01
Show Gist options
  • Save sveneisenschmidt/b5adba7e379c6b0c0741 to your computer and use it in GitHub Desktop.
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"
#!/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