From 4877887e492947e242d7b822542bd020f20cbb7d Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 4 Jul 2016 11:49:25 -0400 Subject: [PATCH] vagrant: use sync after deploying For some reason, the VM would sometimes take a very long time to reboot after deploying the new commit. Adding a sync before rebooting fixes this, though I'm not sure why the filesystem doesn't sync itself as fast without it. Closes: #371 Approved by: cgwalters --- vagrant/commit_and_deploy.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/vagrant/commit_and_deploy.sh b/vagrant/commit_and_deploy.sh index dd305a99..ef34ad53 100644 --- a/vagrant/commit_and_deploy.sh +++ b/vagrant/commit_and_deploy.sh @@ -14,3 +14,4 @@ fi eval $cmd ostree admin deploy vmcheck +sync