Update cheatsheets

This commit is contained in:
ivuorinen
2025-02-07 00:17:34 +00:00
parent efdf464901
commit c8986586ce
16 changed files with 308 additions and 11 deletions

34
tldr/vagrant-plugin Normal file
View File

@@ -0,0 +1,34 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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 list`
- Install 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 update`
- Update a plugin to the latest version:
`vagrant plugin update {{vagrant_vbguest}}`
- Uninstall a specific plugin:
`vagrant uninstall {{vagrant_vbguest}}`