2013-09-03 18:08:28 +00:00
|
|
|
---
|
2013-09-06 16:50:43 +00:00
|
|
|
page_title: "vagrant plugin - Command-Line Interface"
|
2013-09-03 18:08:28 +00:00
|
|
|
sidebar_current: "cli-plugin"
|
|
|
|
---
|
|
|
|
|
|
|
|
# Plugin
|
|
|
|
|
|
|
|
**Command: `vagrant plugin`**
|
|
|
|
|
|
|
|
This is the command used to manage [plugins](/v2/plugins/index.html).
|
|
|
|
|
|
|
|
The main functionality of this command is exposed via another level
|
|
|
|
of subcommands:
|
|
|
|
|
|
|
|
* `install`
|
|
|
|
* `license`
|
|
|
|
* `list`
|
|
|
|
* `uninstall`
|
2013-09-06 16:50:43 +00:00
|
|
|
* `update`
|
2013-09-03 18:08:28 +00:00
|
|
|
|
|
|
|
# Plugin Install
|
|
|
|
|
|
|
|
**Command: `vagrant plugin install <name>`**
|
|
|
|
|
|
|
|
This installs a plugin with the given name or file path. If the name
|
|
|
|
is not a path to a file, then the plugin is installed from remote
|
2013-09-06 16:50:43 +00:00
|
|
|
repositories, usually [RubyGems](http://rubygems.org). This command will
|
|
|
|
also update a plugin if it is already installed, but you can also use
|
|
|
|
`vagrant plugin update` for that.
|
2013-09-03 18:08:28 +00:00
|
|
|
|
|
|
|
# Plugin License
|
|
|
|
|
|
|
|
**Command: `vagrant plugin license <name> <license-file>`**
|
|
|
|
|
|
|
|
This command installs a license for a proprietary Vagrant plugin,
|
|
|
|
such as the [VMware Fusion provider](/v2/vmware/index.html).
|
|
|
|
|
|
|
|
# Plugin List
|
|
|
|
|
|
|
|
**Command: `vagrant plugin list`**
|
|
|
|
|
|
|
|
This lists all installed plugins and their respective versions.
|
|
|
|
|
|
|
|
# Plugin Uninstall
|
|
|
|
|
|
|
|
**Command: `vagrant plugin uninstall <name>`**
|
|
|
|
|
|
|
|
This uninstalls the plugin with the given name. Any dependencies of the
|
|
|
|
plugin will also be uninstalled assuming no other plugin needs them.
|
2013-09-06 16:50:43 +00:00
|
|
|
|
|
|
|
# Plugin Update
|
|
|
|
|
|
|
|
**Command: `vagrant plugin update <name>`**
|
|
|
|
|
|
|
|
This updates the plugin with the given name. If the plugin isn't already
|
|
|
|
installed, this will not install it.
|