mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-03 18:15:23 +02:00

* vagrant-plugin: add page * Update pages/common/vagrant-plugin.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Update pages/common/vagrant-plugin.md Co-authored-by: Wiktor Perskawiec <git@spageektti.cc> * vagrant: add french translation. * vagrant-plugin: add french translation. * Update pages.fr/common/vagrant-plugin.md Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> * vagrant-plugin: update french translation. * vagrant: update french translation. * Update pages.fr/common/vagrant.md Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> * Update pages.fr/common/vagrant-plugin.md Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> * Update pages.fr/common/vagrant.md Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> * Update pages.fr/common/vagrant.md Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> * Update pages.fr/common/vagrant.md Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> * vagrant-plugin: fix quote style * vagrant-plugin: fix quote style --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: Wiktor Perskawiec <git@spageektti.cc> Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com>
29 lines
769 B
Markdown
29 lines
769 B
Markdown
# vagrant plugin
|
|
|
|
> Gère les plugiciels Vagrant.
|
|
> Voir aussi : `vagrant`.
|
|
> Plus d'informations : <https://developer.hashicorp.com/vagrant/docs/cli/plugin>.
|
|
|
|
- Liste tous les plugiciels actuellement installés :
|
|
|
|
`vagrant plugin list`
|
|
|
|
- Installe un plugiciel depuis des dépôts distants, généralement RubyGems :
|
|
|
|
`vagrant plugin install {{vagrant_vbguest}}`
|
|
|
|
- Installe un plugiciel à partir d’un fichier local :
|
|
|
|
`vagrant plugin install {{chemin/vers/plugiciel.gem}}`
|
|
|
|
- Met à jour tous les plugiciels installés vers leur dernière version :
|
|
|
|
`vagrant plugin update`
|
|
|
|
- Met à jour un plugiciel à la dernière version :
|
|
|
|
`vagrant plugin update {{vagrant_vbguest}}`
|
|
|
|
- Désinstalle un plugiciel spécifique :
|
|
|
|
`vagrant plugin uninstall {{vagrant_vbguest}}`
|