The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
mount -t vboxsf -o uid=`id -u vagrant`,gid=`id -g vagrant` /vagrant /vagrant
Vagrant assumes that this means the command failed!
mount -t vboxsf -o uid=`id -u vagrant`,gid=`id -g vagrant` /vagrant /vagrant
これはVirtualBox Guest Additionsをリビルドせずにパッケージマネージャーがカーネルをアップグレードしたときに起こることらしい。確認のためVagrantでサーバーに接続して
lsmod | grep vboxsf
とコマンドを打って何も出力されなければVirtualBox Guest Additionsがロードされていない。解決するにはVagrantサーバーに接続して以下のコマンドでリビルドする。
sudo /etc/init.d/vboxadd setup
これでvagrat upしてエラーが表示されなければOK。参考:Vagrant Documentation - Documentation - Troubleshooting Common Problems