Skip to content

Commit

Permalink
vagrant, vagrant-plugin: add French translation (tldr-pages#15735)
Browse files Browse the repository at this point in the history
* vagrant-plugin: add page

* Update pages/common/vagrant-plugin.md

Co-authored-by: Lena <[email protected]>

* Update pages/common/vagrant-plugin.md

Co-authored-by: Wiktor Perskawiec <[email protected]>

* vagrant: add french translation.

* vagrant-plugin: add french translation.

* Update pages.fr/common/vagrant-plugin.md

Co-authored-by: Alexandre ZANNI <[email protected]>

* vagrant-plugin: update french translation.

* vagrant: update french translation.

* Update pages.fr/common/vagrant.md

Co-authored-by: Alexandre ZANNI <[email protected]>

* Update pages.fr/common/vagrant-plugin.md

Co-authored-by: Alexandre ZANNI <[email protected]>

* Update pages.fr/common/vagrant.md

Co-authored-by: Alexandre ZANNI <[email protected]>

* Update pages.fr/common/vagrant.md

Co-authored-by: Alexandre ZANNI <[email protected]>

* Update pages.fr/common/vagrant.md

Co-authored-by: Alexandre ZANNI <[email protected]>

* vagrant-plugin: fix quote style

* vagrant-plugin: fix quote style

---------

Co-authored-by: Lena <[email protected]>
Co-authored-by: Wiktor Perskawiec <[email protected]>
Co-authored-by: Alexandre ZANNI <[email protected]>
  • Loading branch information
4 people authored Feb 26, 2025
1 parent 261ba44 commit da1dc3b
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pages.fr/common/vagrant-plugin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# 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}}`
36 changes: 36 additions & 0 deletions pages.fr/common/vagrant.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# vagrant

> Gère des environnements de développement légers, reproductibles et portables.
> Plus d'informations : <https://www.vagrantup.com>.
- Crée un fichier Vagrantfile dans le répertoire actuel avec l'image Vagrant de base :

`vagrant init`

- Crée un fichier Vagrantfile avec l'image Ubuntu 20.04 (Focal Fossa) depuis HashiCorp Atlas :

`vagrant init ubuntu/focal64`

- Démarre et configure l’environnement Vagrant :

`vagrant up`

- Suspend la machine :

`vagrant suspend`

- Arrête la machine :

`vagrant halt`

- Se connecte à la machine via SSH :

`vagrant ssh`

- Affiche la configuration SSH de la machine Vagrant en cours d’exécution :

`vagrant ssh-config`

- Liste toutes les images locales :

`vagrant box list`

0 comments on commit da1dc3b

Please sign in to comment.