[stable-2.7] Fix reverse_inventory order to work on python3 (#49895) (#50048)

* [stable-2.7] Fix reverse_inventory order to work on python3 (#49895)
(cherry picked from commit a0d71e7)

Co-authored-by: Matt Martz <matt@sivel.net>

* Clarify the change made to reverse_inventory
This commit is contained in:
Matt Martz 2019-01-07 13:12:31 -06:00 committed by Toshio Kuratomi
parent 4561a5007b
commit 2bd8bba297
2 changed files with 7 additions and 3 deletions

View file

@ -0,0 +1,3 @@
bugfixes:
- host execution order - Fix ``reverse_inventory`` not to change the order of
the items before reversing on python2 and to not backtrace on python3

View file

@ -24,6 +24,9 @@ import os
import re
import itertools
from operator import attrgetter
from random import shuffle
from ansible import constants as C
from ansible.errors import AnsibleError, AnsibleOptionsError, AnsibleParserError
from ansible.inventory.data import InventoryData
@ -368,14 +371,12 @@ class InventoryManager(object):
# sort hosts list if needed (should only happen when called from strategy)
if order in ['sorted', 'reverse_sorted']:
from operator import attrgetter
hosts = sorted(self._hosts_patterns_cache[pattern_hash][:], key=attrgetter('name'), reverse=(order == 'reverse_sorted'))
elif order == 'reverse_inventory':
hosts = sorted(self._hosts_patterns_cache[pattern_hash][:], reverse=True)
hosts = self._hosts_patterns_cache[pattern_hash][::-1]
else:
hosts = self._hosts_patterns_cache[pattern_hash][:]
if order == 'shuffle':
from random import shuffle
shuffle(hosts)
elif order not in [None, 'inventory']:
raise AnsibleOptionsError("Invalid 'order' specified for inventory hosts: %s" % order)