skip all groupn since we create it ourselves

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-02-18 11:33:09 +01:00
parent 7784a4088e
commit b91bb9836e
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ def _backup_ansible(inventory):
).format(**host)
text += '\n'
for name, hosts in inventory.iteritems():
if name == '_meta':
if name in ['_meta', 'all']:
continue
text += '[{}]\n'.format(name)
for host in hosts['hosts']: