etc_git: fix README to use tasks_from instead of task_from

This commit is contained in:
Jérémy Lecour 2017-07-27 16:51:35 -04:00 committed by Jérémy Lecour
parent f20b95f075
commit 6871de457a

View file

@ -15,7 +15,7 @@ There is also an independant task that can be executed to commit changes made in
pre_tasks:
- include_role:
name: etc-git
task_from: commit.yml
tasks_from: commit.yml
vars:
commit_message: "Ansible pre-run my splendid playbook"
@ -25,7 +25,7 @@ There is also an independant task that can be executed to commit changes made in
post_tasks:
- include_role:
name: etc-git
task_from: commit.yml
tasks_from: commit.yml
vars:
commit_message: "Ansible pre-run my splendid playbook"
```