Sha256: 88140a7f58138e14574c1ebce7f31923b72c856ea2fe8c07458bd5b49493102a
Contents?: true
Size: 657 Bytes
Versions: 32
Compression:
Stored size: 657 Bytes
Contents
require "vagrant" module VagrantPlugins module HostSlackware class Plugin < Vagrant.plugin("2") name "Slackware host" description "Slackware and derivertives host support." host("slackware", "linux") do require File.expand_path("../host", __FILE__) Host end # Linux-specific helpers we need to determine paths that can # be overriden. host_capability("slackware", "nfs_check_command") do require_relative "cap/nfs" Cap::NFS end host_capability("slackware", "nfs_start_command") do require_relative "cap/nfs" Cap::NFS end end end end
Version data entries
32 entries across 29 versions & 6 rubygems