mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
20 lines
451 B
Ruby
20 lines
451 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module GuestPld
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "PLD Linux guest"
|
|
description "PLD Linux guest support."
|
|
|
|
guest("pld", "redhat") do
|
|
require File.expand_path("../guest", __FILE__)
|
|
Guest
|
|
end
|
|
|
|
guest_capability("pld", "network_scripts_dir") do
|
|
require_relative "cap/network_scripts_dir"
|
|
Cap::NetworkScriptsDir
|
|
end
|
|
end
|
|
end
|
|
end
|