From eae254957cb8e6092147f26eaaac73d8a21916a1 Mon Sep 17 00:00:00 2001 From: Pedro Garcia Rodriguez Date: Wed, 31 Aug 2022 13:56:49 +0200 Subject: [PATCH] Change French word exercices, using English word instead --- docs/books/learning_ansible/01-basic.md | 2 +- docs/books/learning_ansible/02-advanced.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/books/learning_ansible/01-basic.md b/docs/books/learning_ansible/01-basic.md index 67a1cd942c..2660e2fc6c 100644 --- a/docs/books/learning_ansible/01-basic.md +++ b/docs/books/learning_ansible/01-basic.md @@ -851,7 +851,7 @@ test.yml 8:1 error syntax error: could not find expected ':' (syntax) ``` -## Exercices results +## Exercises results * Create the groups Paris, Tokio, NewYork * Create the user `supervisor` diff --git a/docs/books/learning_ansible/02-advanced.md b/docs/books/learning_ansible/02-advanced.md index f9ee689972..319af285ee 100644 --- a/docs/books/learning_ansible/02-advanced.md +++ b/docs/books/learning_ansible/02-advanced.md @@ -152,7 +152,7 @@ Use of a stored variable: The strings that make up the stored variable can be accessed via the `stdout` value (which allows you to do things like `homes.stdout.find("core") != -1`), to exploit them using a loop (see `loop`), or simply by their indices as seen in the previous example. -### Exercices +### Exercises * Write a playbook `play-vars.yml` that prints the distribution name of the target with its major version, using global variables. @@ -269,7 +269,7 @@ Let's see this through a concrete example, showing the management of the system Many things can be done with the loops. You will discover the possibilities offered by loops when your use of Ansible pushes you to use them in a more complex way. -### Exercices +### Exercises * Display the content of the `service` variable from the previous exercise using a loop. @@ -350,7 +350,7 @@ You will probably have to test that a variable exists to avoid execution errors: when: myboolean is defined and myboolean ``` -### Exercices +### Exercises * Print the value of `service.web` only when `type` equals to `web`.