vagrant/plugins/guests/alpine/plugin.rb
oss-core-libraries-dashboard[bot] ea57f40b89
Some checks failed
/ sync-acceptance (push) Has been cancelled
Vagrant Ruby Tests / Vagrant unit tests on Ruby 3.1 (push) Has been cancelled
Vagrant Ruby Tests / Vagrant unit tests on Ruby 3.2 (push) Has been cancelled
Vagrant Ruby Tests / Vagrant unit tests on Ruby 3.3 (push) Has been cancelled
Vagrant Ruby Tests / Vagrant unit tests on Ruby 3.4 (push) Has been cancelled
[COMPLIANCE] Update Copyright and License Headers (#13752)
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2025-12-04 17:07:40 +05:30

69 lines
1.7 KiB
Ruby

# Copyright IBM Corp. 2010, 2025
# SPDX-License-Identifier: BUSL-1.1
require 'vagrant'
module VagrantPlugins
module GuestAlpine
class Plugin < Vagrant.plugin('2')
name 'Alpine guest'
description 'Alpine Linux guest support.'
guest(:alpine, :linux) do
require File.expand_path('../guest', __FILE__)
Guest
end
guest_capability(:alpine, :configure_networks) do
require_relative 'cap/configure_networks'
Cap::ConfigureNetworks
end
guest_capability(:alpine, :halt) do
require_relative 'cap/halt'
Cap::Halt
end
guest_capability(:alpine, :change_host_name) do
require_relative 'cap/change_host_name'
Cap::ChangeHostName
end
guest_capability(:alpine, :nfs_client_install) do
require_relative 'cap/nfs_client'
Cap::NFSClient
end
guest_capability(:alpine, :rsync_installed) do
require_relative 'cap/rsync'
Cap::RSync
end
guest_capability(:alpine, :rsync_install) do
require_relative 'cap/rsync'
Cap::RSync
end
guest_capability(:alpine, :smb_install) do
require_relative 'cap/smb'
Cap::SMB
end
def self.check_community_plugin
plugins = Vagrant::Plugin::Manager.instance.installed_plugins
if plugins.keys.include?("vagrant-alpine")
$stderr.puts <<-EOF
WARNING: Vagrant has detected the `vagrant-alpine` plugin. This plugin's
functionality has been merged into the main Vagrant project and should be
considered deprecated. To uninstall the plugin, run the command shown below:
vagrant plugin uninstall vagrant-alpine
EOF
end
end
self.check_community_plugin
end
end
end