Updating for NFS Fix
This commit is contained in:
parent
fd68e362a0
commit
0c03ad18fc
|
@ -122,7 +122,9 @@ module VagrantPlugins
|
||||||
output.split("\n").each do |line|
|
output.split("\n").each do |line|
|
||||||
line.gsub!('"', '\"')
|
line.gsub!('"', '\"')
|
||||||
line.gsub!("'", "'\\\\''")
|
line.gsub!("'", "'\\\\''")
|
||||||
system(%Q[sudo su root -c "echo '#{line}' >> /etc/exports"])
|
# system(%Q[sudo su root -c "echo '#{line}' >> /etc/exports"])
|
||||||
|
# Update to Bypass Security Check
|
||||||
|
system(%Q[sudo -s -- "echo '#{line}' >> /etc/exports"])
|
||||||
end
|
end
|
||||||
|
|
||||||
# We run restart here instead of "update" just in case nfsd
|
# We run restart here instead of "update" just in case nfsd
|
||||||
|
|
Loading…
Reference in New Issue