-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add exercises to chapter 15 (Ansible)
- Loading branch information
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
### Задание 15.2 | ||
|
||
Создайте playbook, который выполняет такие задачи: | ||
* собирает все факты с маршрутизаторов | ||
* результат нельзя записывать в переменную | ||
* отображает содержимое факта об интерфейсах (в факте находится словарь с интерфейсами и их параметрами) | ||
|
||
Проверьте работу playbook на маршрутизаторах. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
### Задание 15.2a | ||
|
||
Создайте playbook, который выполняет такие задачи: | ||
* собирает все факты с маршрутизаторов | ||
* результат нельзя записывать в переменную | ||
* записывает содержимое факта об интерфейсах в файл в каталог all_facts: | ||
* имя файла должно быть такого вида: hostname_intf_facts.yaml | ||
* hostname - это имя текущего устройства, для которого собираются факты | ||
* файл должен быть в формате YAML, в виде, который удобней для чтения человеком | ||
|
||
|
||
Проверьте работу playbook на маршрутизаторах. |