Include warning about vagrant-alpine plugin

This commit is contained in:
Jeff Bonhag 2019-11-26 16:49:12 -05:00
parent b7000165d4
commit 2acfc5ebb5
No known key found for this signature in database
GPG Key ID: 32966F3FB5AC1129
1 changed files with 13 additions and 0 deletions

View File

@ -63,6 +63,19 @@ To disable this warning, set the environment variable `VAGRANT_USE_VAGRANT_TRIGG
EOF
end
end
if plugins.keys.include?("vagrant-alpine") &&
!ENV["VAGRANT_USE_VAGRANT_ALPINE"]
$stderr.puts <<-EOF
WARNING: Vagrant has detected the `vagrant-alpine` plugin. This plugin conflicts
with the internal Alpine Linux guest plugin. Please uninstall the
`vagrant-alpine` plugin and run the command again if you wish to use the core
Alpine Linux guest plugin. To uninstall the plugin, run the command shown below:
vagrant plugin uninstall vagrant-alpine
To disable this warning, set the environment variable `VAGRANT_USE_VAGRANT_ALPINE`.
EOF
end
end
end
end