vagrant/plugins/guests/linux
Stanislav German-Evtushenko 1a8c8b5af9
Fix Ubuntu 24.04 shutdown hang with synced folders
Fix Ubuntu 24.04 shutdown hang by preventing vagrant from mounting
already mounted synced folders. Fixes #13795.

Before:
```
vagrant ssh
mount | grep vagrant
vagrant on /vagrant type vboxsf (rw,nodev,relatime,iocharset=utf8,uid=1000,gid=1000)
vagrant on /vagrant type vboxsf (rw,nodev,relatime,iocharset=utf8,uid=1000,gid=1000,_netdev)
exit

time vagrant halt
==> default: Attempting graceful shutdown of VM...
==> default: Forcing shutdown of VM...

real	1m5.500s
user	0m3.900s
sys	0m4.279s
```

After:
```
vagrant ssh
mount | grep vagrant
vagrant on /vagrant type vboxsf (rw,nodev,relatime,iocharset=utf8,uid=1000,gid=1000,_netdev)
exit

time vagrant halt
==> default: Attempting graceful shutdown of VM...

real	0m5.210s
user	0m1.657s
sys	0m0.966s
```
2026-04-11 02:53:16 +09:00
..
cap Fix Ubuntu 24.04 shutdown hang with synced folders 2026-04-11 02:53:16 +09:00
guest.rb [COMPLIANCE] Update Copyright and License Headers (Batch 2 of 7) (#13761) 2025-12-22 16:46:17 +05:30
plugin.rb [COMPLIANCE] Update Copyright and License Headers (Batch 2 of 7) (#13761) 2025-12-22 16:46:17 +05:30