2013-08-24 13:10:51 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
2013-08-24 15:10:18 +00:00
|
|
|
module HostSlackware
|
2013-08-24 13:10:51 +00:00
|
|
|
class Plugin < Vagrant.plugin("2")
|
|
|
|
name "Slackware host"
|
|
|
|
description "Slackware and derivertives host support."
|
|
|
|
|
2014-01-08 05:11:59 +00:00
|
|
|
host("slackware", "linux") do
|
2013-08-24 13:10:51 +00:00
|
|
|
require File.expand_path("../host", __FILE__)
|
|
|
|
Host
|
|
|
|
end
|
2014-01-08 05:11:59 +00:00
|
|
|
|
|
|
|
# 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
|
2013-08-24 13:10:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|