Sha256: 68219eb22955a4ea3fe476f4831bba8f25481b756078caea9ff31681b8548d57
Contents?: true
Size: 607 Bytes
Versions: 1
Compression:
Stored size: 607 Bytes
Contents
require "vagrant" module VagrantPlugins module GuestArch class Plugin < Vagrant.plugin("2") name "Arch guest" description "Arch guest support." guest("arch", "linux") do require File.expand_path("../guest", __FILE__) Guest end guest_capability("arch", "change_host_name") do require_relative "cap/change_host_name" Cap::ChangeHostName end guest_capability("arch", "configure_networks") do require_relative "cap/configure_networks" Cap::ConfigureNetworks 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/guests/arch/plugin.rb |