snippetbashTip
vagrant plugin — Manage Vagrant plugins. See also: `vagrant`. More information: <https://developer.hashicorp.com/vagr
Viewed 0 times
commandvagrantpluginsclimanagevagrant pluginseealso
Problem
How to use the
vagrant plugin command: Manage Vagrant plugins. See also: vagrant. More information: <https://developer.hashicorp.com/vagrant/docs/cli/plugin>.Solution
vagrant plugin — Manage Vagrant plugins. See also: vagrant. More information: <https://developer.hashicorp.com/vagrant/docs/cli/plugin>.List all the plugins currently installed:
vagrant plugin listInstall a plugin from remote repositories, usually RubyGems:
vagrant plugin install {{vagrant_vbguest}}Install a plugin from a local file source:
vagrant plugin install {{path/to/my_plugin.gem}}Update all installed plugins to their latest version:
vagrant plugin updateUpdate a plugin to the latest version:
vagrant plugin update {{vagrant_vbguest}}Uninstall a specific plugin:
vagrant plugin uninstall {{vagrant_vbguest}}Code Snippets
List all the plugins currently installed
vagrant plugin listInstall a plugin from remote repositories, usually RubyGems
vagrant plugin install {{vagrant_vbguest}}Install a plugin from a local file source
vagrant plugin install {{path/to/my_plugin.gem}}Update all installed plugins to their latest version
vagrant plugin updateUpdate a plugin to the latest version
vagrant plugin update {{vagrant_vbguest}}Context
tldr-pages: common/vagrant plugin
Revisions (0)
No revisions yet.