1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Playbook can now take a 'name' which it will show when starting the play

This commit is contained in:
Michael DeHaan 2012-04-27 00:08:06 -04:00
parent 67d1169674
commit f939f3fdaf
2 changed files with 5 additions and 3 deletions

View file

@ -7,7 +7,8 @@
# on all hosts, run as the user root...
- hosts: all
- name: example play
hosts: all
user: root
# could have also have done:

View file

@ -553,7 +553,8 @@ class PlayBook(object):
''' run a list of tasks for a given pattern, in order '''
# get configuration information about the pattern
pattern = pg.get('hosts',None)
pattern = pg.get('hosts',None)
name = pg.get('name', pattern)
if isinstance(pattern, list):
pattern = ';'.join(pattern)
if self.override_hosts:
@ -570,7 +571,7 @@ class PlayBook(object):
sudo = pg.get('sudo', self.sudo)
transport = pg.get('connection', self.transport)
self.callbacks.on_play_start(pattern)
self.callbacks.on_play_start(name)
# push any variables down to the system # and get facts/ohai/other data back up
self._do_setup_step(pattern, vars, user, port, sudo, transport, None)