15 lines
227 B
Ruby
15 lines
227 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module Kernel_V2
|
|
class NFSConfig < Vagrant.plugin("2", :config)
|
|
attr_accessor :map_uid
|
|
attr_accessor :map_gid
|
|
|
|
def to_s
|
|
"NFS"
|
|
end
|
|
end
|
|
end
|
|
end
|