Fix typos in package update examples

The examples used semicolons to list multiple hosts and groups but it
should use colons (or commas).

Signed-off-by: Nils Philippsen <nils@redhat.com>
This commit is contained in:
Nils Philippsen 2022-08-08 11:04:34 +02:00 committed by kevin
parent dd904cee98
commit 2fd60b42d9

View file

@ -1,10 +1,10 @@
# requires --extra-vars="target='host1;host2;group etc' package='python-tahrir'"
# requires --extra-vars="target='host1:host2:group etc' package='python-tahrir'"
#
# Alternatively, you could update a group of packages like
# --extra-vars="target='host1;host2' package='python-t*'"
# --extra-vars="target='host1:host2' package='python-t*'"
#
# To update from testing, adjust as follow:
# --extra-vars="target='host1;host2' package='python-t*' testing=True"
# --extra-vars="target='host1:host2' package='python-t*' testing=True"
- name: push packages out
hosts: "{{target}}"