Sha256: db3b127567397b60d2e0cb70c4155ffcfc4d84abbbd51c57561d1d54ff538f05
Contents?: true
Size: 445 Bytes
Versions: 8
Compression:
Stored size: 445 Bytes
Contents
require 'pathname' module Vagrant module Hosts class Fedora < Linux def self.match? release_file = Pathname.new("/etc/redhat-release") if release_file.exist? release_file.open("r") do |f| return true if f.gets =~ /^Fedora/ end end false end def initialize(*args) super @nfs_server_binary = "/etc/init.d/nfs" end end end end
Version data entries
8 entries across 8 versions & 2 rubygems