hosts/linux: fix NFS prune regex

This commit is contained in:
Mitchell Hashimoto 2013-09-01 12:00:36 -07:00
parent a6aa16dcad
commit 2d2180e5a5
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ module VagrantPlugins
user = Process.uid
# Use sed to just strip out the block of code which was inserted
# by Vagrant
system("sudo sed -e '/^# VAGRANT-BEGIN:\\( #{user}\\)\\? #{id}/,/^# VAGRANT-END:\\( #{user}\\)\\? #{id}/ d' -ibak /etc/exports")
system("sudo sed -r -e '/^# VAGRANT-BEGIN:( #{user})? #{id}/,/^# VAGRANT-END:( #{user})? #{id}/ d' -ibak /etc/exports")
end
end
end