alpine: Replace capability strings with symbols
Those were introduced upstream in b29864f450
.
This commit is contained in:
parent
2216d23048
commit
3b03944331
|
@ -6,42 +6,42 @@ module VagrantPlugins
|
|||
name 'Alpine guest'
|
||||
description 'Alpine Linux guest support.'
|
||||
|
||||
guest('alpine', 'linux') do
|
||||
guest(:alpine, :linux) do
|
||||
require File.expand_path('../guest', __FILE__)
|
||||
Guest
|
||||
end
|
||||
|
||||
guest_capability('alpine', 'configure_networks') do
|
||||
guest_capability(:alpine, :configure_networks) do
|
||||
require_relative 'cap/configure_networks'
|
||||
Cap::ConfigureNetworks
|
||||
end
|
||||
|
||||
guest_capability('alpine', 'halt') do
|
||||
guest_capability(:alpine, :halt) do
|
||||
require_relative 'cap/halt'
|
||||
Cap::Halt
|
||||
end
|
||||
|
||||
guest_capability('alpine', 'change_host_name') do
|
||||
guest_capability(:alpine, :change_host_name) do
|
||||
require_relative 'cap/change_host_name'
|
||||
Cap::ChangeHostName
|
||||
end
|
||||
|
||||
guest_capability('alpine', 'nfs_client_install') do
|
||||
guest_capability(:alpine, :nfs_client_install) do
|
||||
require_relative 'cap/nfs_client'
|
||||
Cap::NFSClient
|
||||
end
|
||||
|
||||
guest_capability('alpine', 'rsync_installed') do
|
||||
guest_capability(:alpine, :rsync_installed) do
|
||||
require_relative 'cap/rsync'
|
||||
Cap::RSync
|
||||
end
|
||||
|
||||
guest_capability('alpine', 'rsync_install') do
|
||||
guest_capability(:alpine, :rsync_install) do
|
||||
require_relative 'cap/rsync'
|
||||
Cap::RSync
|
||||
end
|
||||
|
||||
guest_capability('alpine', 'smb_install') do
|
||||
guest_capability(:alpine, :smb_install) do
|
||||
require_relative 'cap/smb'
|
||||
Cap::SMB
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue