Sha256: 30420f4a925214f6f412cee458447ecd45fdbed630cfea74b77f739b725ce5ea
Contents?: true
Size: 629 Bytes
Versions: 1
Compression:
Stored size: 629 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-cloudstack-1.2.0 | vendor/bundle/bundler/gems/vagrant-c84e05fd063f/plugins/hosts/gentoo/plugin.rb |