Sha256: 3620b480454792ffb116f54d846240dcc01eb697e04b0123bd21c05e2d9403b8
Contents?: true
Size: 624 Bytes
Versions: 5
Compression:
Stored size: 624 Bytes
Contents
require "vagrant" module VagrantPlugins module HostRedHat class Plugin < Vagrant.plugin("2") name "Red Hat host" description "Red Hat host support." host("redhat", "linux") do require File.expand_path("../host", __FILE__) Host end # Linux-specific helpers we need to determine paths that can # be overriden. host_capability("redhat", "nfs_check_command") do require_relative "cap/nfs" Cap::NFS end host_capability("redhat", "nfs_start_command") do require_relative "cap/nfs" Cap::NFS end end end end
Version data entries
5 entries across 2 versions & 2 rubygems