-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Closed
Description
Debug output
https://gist.github.com/dfreudenberger/7e894870dc739cba7876fef4983c8508
Expected behavior
synced_folder should mount the specified path using NFS.
Actual behavior
Apple decided to limit the access to kickstart which is currently used to restart the NFS daemon. Therefore the mount operation fails.
Edit:
It seems like Vagrant doesn't actually use kickstart by itself; instead, it runs "sudo nfsd restart" which causes the error mentioned. Perhaps modifying this line to use update
instead of restart
could solve the problem.
sudo nfsd restart
Could not kickstart service "com.apple.nfsd": 1: Operation not permitted
/bin/launchctl exited with status 1
Reproduction information
Vagrant version
Vagrant 2.4.1
Host operating system
MacOS Sonoma 14.4
Guest operating system
Fedora
Steps to reproduce
- vagrant up
Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "bento/fedora-latest"
config.vm.provider "parallels" do |prl|
prl.update_guest_tools = false
end
config.vm.synced_folder '~/dev', "/data", :type => 'nfs', :nfs_version => 3
end
emek-lu, lookareyellow, Stark-X, a-vasyukov, Unending and 14 more