diff options
author | sirkubax <muszynski@so1.net> | 2017-10-27 15:05:56 +0200 |
---|---|---|
committer | sirkubax <muszynski@so1.net> | 2017-10-27 15:05:56 +0200 |
commit | 147533c849733dadc2c3db31e9365ff4b4943cbe (patch) | |
tree | c54aaff405cd4966d8fad078df87c1b13d1dc648 /ansible.html.markdown | |
parent | 844e24899e022a948c52cc68b8af33e2d8b28208 (diff) |
update
Diffstat (limited to 'ansible.html.markdown')
-rw-r--r-- | ansible.html.markdown | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ansible.html.markdown b/ansible.html.markdown index a10540d3..95735e21 100644 --- a/ansible.html.markdown +++ b/ansible.html.markdown @@ -298,7 +298,7 @@ You should know about a way to increase efficiency by this simple functionality You can tag a task, role (and its tasks), include, etc... You can then limit an execution by using - --tags tagA, other_tag,... + ansible-playbook playbooks/simple_playbook.yml --tags tagA, tag_other There are special tags: always @@ -307,6 +307,8 @@ You can tag a task, role (and its tasks), include, etc... #### LIMIT You can limit an execution of your tasks to defined hosts + ansible-playbook playbooks/simple_playbook.yml --limmit localhost + --limit my_hostname --limit groupname --limit some_prefix* |