Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vagrant, vagrant-plugin: add French translation #15735

Open
wants to merge 28 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ae0a5ce
vagrant-plugin: add page
aminelch Feb 2, 2025
4ee9386
Merge branch 'main' into main
aminelch Feb 4, 2025
6e2af51
Update pages/common/vagrant-plugin.md
aminelch Feb 4, 2025
9e241fc
Update pages/common/vagrant-plugin.md
aminelch Feb 4, 2025
c06a735
Merge branch 'main' into main
aminelch Feb 5, 2025
4da33ed
Merge branch 'main' into main
aminelch Feb 6, 2025
590929e
Merge remote-tracking branch 'upstream/main'
aminelch Feb 14, 2025
5ce9695
vagrant: add french translation.
aminelch Feb 14, 2025
c43b4a4
vagrant-plugin: add french translation.
aminelch Feb 14, 2025
6ec89cb
Update pages.fr/common/vagrant-plugin.md
aminelch Feb 14, 2025
a3cafcd
Merge remote-tracking branch 'upstream/main'
aminelch Feb 15, 2025
07b877b
Merge branch 'main' into main
aminelch Feb 15, 2025
fc27af0
vagrant-plugin: update french translation.
aminelch Feb 15, 2025
ade1a0d
vagrant: update french translation.
aminelch Feb 15, 2025
fbfdf1f
Merge remote-tracking branch 'origin/main'
aminelch Feb 15, 2025
e71858c
Merge branch 'main' into main
aminelch Feb 15, 2025
a41d8e5
Merge branch 'main' into main
aminelch Feb 16, 2025
e92a31b
Merge branch 'main' into main
aminelch Feb 16, 2025
d3d8285
Update pages.fr/common/vagrant.md
aminelch Feb 21, 2025
83994b9
Update pages.fr/common/vagrant-plugin.md
aminelch Feb 21, 2025
40ead8a
Update pages.fr/common/vagrant.md
aminelch Feb 21, 2025
62de051
Update pages.fr/common/vagrant.md
aminelch Feb 21, 2025
ab0653d
Update pages.fr/common/vagrant.md
aminelch Feb 21, 2025
b6d3454
vagrant-plugin: fix quote style
noraj Feb 21, 2025
000b284
vagrant-plugin: fix quote style
noraj Feb 21, 2025
0740ef2
Merge branch 'main' into main
noraj Feb 21, 2025
f61d3b7
Merge branch 'main' into main
aminelch Feb 22, 2025
4af099d
Merge branch 'main' into main
aminelch Feb 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 {{path/to/my_plugin.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 la box Vagrant de base :

`vagrant init`

- Crée un fichier Vagrantfile avec la box Ubuntu 20.04 (Focal Fossa) depuis HashiCorp Atlas :

`vagrant init ubuntu/focal64`

- Démarre et provisionne 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 boxes locales :

`vagrant box list`