vagrant/plugins/hosts/suse/plugin.rb

34 lines
681 B
Ruby
Raw Normal View History

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
2012-04-19 01:20:45 -04:00
require "vagrant"
module VagrantPlugins
module HostSUSE
2012-11-07 00:20:22 -05:00
class Plugin < Vagrant.plugin("2")
name "SUSE host"
description "SUSE host support."
2012-04-19 01:20:45 -04:00
host("suse", "linux") do
2014-01-08 00:11:59 -05:00
require_relative "host"
2012-05-23 19:03:14 -04:00
Host
end
2014-01-08 00:11:59 -05:00
host_capability("suse", "nfs_installed") do
require_relative "cap/nfs"
Cap::NFS
end
host_capability("suse", "nfs_check_command") do
2014-01-08 00:11:59 -05:00
require_relative "cap/nfs"
Cap::NFS
end
host_capability("suse", "nfs_start_command") do
2014-01-08 00:11:59 -05:00
require_relative "cap/nfs"
Cap::NFS
end
2012-04-19 01:20:45 -04:00
end
end
end