2011-08-27 23:47:13 -07:00

12 lines
173 B
Ruby

module Vagrant
module Hosts
class Fedora < Linux
def initialize(*args)
super
@nfs_server_binary = "/etc/init.d/nfs"
end
end
end
end