2012-11-07 05:28:44 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module Kernel_V2
|
|
|
|
class NFSConfig < Vagrant.plugin("2", :config)
|
|
|
|
attr_accessor :map_uid
|
|
|
|
attr_accessor :map_gid
|
2013-04-03 23:18:37 +00:00
|
|
|
|
|
|
|
def to_s
|
|
|
|
"NFS"
|
|
|
|
end
|
2012-11-07 05:28:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|