Sha256: 82e7cc9ba4b4f3d60a9aab64248191b15271dfda57faf8d2db93b55914159c12
Contents?: true
Size: 370 Bytes
Versions: 8
Compression:
Stored size: 370 Bytes
Contents
require 'vagrant/util/platform' module Vagrant module Hosts # Represents a FreeBSD host class FreeBSD < BSD include Util include Util::Retryable def self.match? Util::Platform.freebsd? end def initialize(*args) super @nfs_restart_command = "sudo /etc/rc.d/mountd onereload" end end end end
Version data entries
8 entries across 8 versions & 2 rubygems