From da1dc3bf1a2e967508a3918ddd6c7c00ddd60162 Mon Sep 17 00:00:00 2001 From: Amine LOUHICHI <32558537+aminelch@users.noreply.github.com> Date: Wed, 26 Feb 2025 13:53:30 +0100 Subject: [PATCH] vagrant, vagrant-plugin: add French translation (#15735) * 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 * 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 Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> --- pages.fr/common/vagrant-plugin.md | 29 +++++++++++++++++++++++++ pages.fr/common/vagrant.md | 36 +++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 pages.fr/common/vagrant-plugin.md create mode 100644 pages.fr/common/vagrant.md diff --git a/pages.fr/common/vagrant-plugin.md b/pages.fr/common/vagrant-plugin.md new file mode 100644 index 00000000000000..1985a9c34dd550 --- /dev/null +++ b/pages.fr/common/vagrant-plugin.md @@ -0,0 +1,29 @@ +# vagrant plugin + +> Gère les plugiciels Vagrant. +> Voir aussi : `vagrant`. +> Plus d'informations : . + +- 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}}` diff --git a/pages.fr/common/vagrant.md b/pages.fr/common/vagrant.md new file mode 100644 index 00000000000000..d5e1f6b5991858 --- /dev/null +++ b/pages.fr/common/vagrant.md @@ -0,0 +1,36 @@ +# vagrant + +> Gère des environnements de développement légers, reproductibles et portables. +> Plus d'informations : . + +- 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`