Sha256: 47bd1505eeb7dca51a064f6142201c335d37caf6c39238e72dd2387a7114057e
Contents?: true
Size: 601 Bytes
Versions: 32
Compression:
Stored size: 601 Bytes
Contents
require "vagrant" module VagrantPlugins module HostGentoo class Plugin < Vagrant.plugin("2") name "Gentoo host" description "Gentoo host support." host("gentoo", "linux") do require_relative "host" Host end # Linux-specific helpers we need to determine paths that can # be overriden. host_capability("gentoo", "nfs_check_command") do require_relative "cap/nfs" Cap::NFS end host_capability("gentoo", "nfs_start_command") do require_relative "cap/nfs" Cap::NFS end end end end
Version data entries
32 entries across 29 versions & 6 rubygems