Update intro_getting_started.rst (#74786)
Changed confusing wording. People new to ansible, like myself, have a hard time grocking what is a playbook and what is a task. I changed the name of the playbook to make it clearer.
This commit is contained in:
parent
80e7e1a17c
commit
81c770e44a
1 changed files with 2 additions and 2 deletions
|
@ -108,7 +108,7 @@ In a directory of your choice you can create your first playbook in a file calle
|
||||||
.. code-block:: yaml
|
.. code-block:: yaml
|
||||||
|
|
||||||
---
|
---
|
||||||
- name: My task
|
- name: My playbook
|
||||||
hosts: all
|
hosts: all
|
||||||
tasks:
|
tasks:
|
||||||
- name: Leaving a mark
|
- name: Leaving a mark
|
||||||
|
@ -125,7 +125,7 @@ and may see output like this:
|
||||||
.. code-block:: ansible-output
|
.. code-block:: ansible-output
|
||||||
|
|
||||||
|
|
||||||
PLAY [My task] **************************************************************************************************************************
|
PLAY [My playbook] **********************************************************************************************************************
|
||||||
|
|
||||||
TASK [Gathering Facts] ******************************************************************************************************************
|
TASK [Gathering Facts] ******************************************************************************************************************
|
||||||
ok: [aserver.example.org]
|
ok: [aserver.example.org]
|
||||||
|
|
Loading…
Reference in a new issue