Sha256: 73a6162ac67803978e12f01e757d5ab3d589707312fa8f48e99e292aee3b97d1

Contents?: true

Size: 853 Bytes

Versions: 3

Compression:

Stored size: 853 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module GuestTinyCore
    class Plugin < Vagrant.plugin("2")
      name "TinyCore Linux guest."
      description "TinyCore Linux guest support."

      guest("tinycore", "linux")  do
        require File.expand_path("../guest", __FILE__)
        Guest
      end

      guest_capability("tinycore", "configure_networks") do
        require_relative "cap/configure_networks"
        Cap::ConfigureNetworks
      end

      guest_capability("tinycore", "change_host_name") do
        require_relative "cap/change_host_name"
        Cap::ChangeHostName
      end

      guest_capability("tinycore", "halt") do
        require_relative "cap/halt"
        Cap::Halt
      end

      guest_capability("tinycore", "rsync_install") do
        require_relative "cap/rsync"
        Cap::RSync
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
vagrant-unbundled-1.8.1.2 plugins/guests/tinycore/plugin.rb
vagrant-unbundled-1.8.1.1 plugins/guests/tinycore/plugin.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-272fb27e0536/plugins/guests/tinycore/plugin.rb