mirror of
https://github.com/zerwes/ansible-fqcn-converter.git
synced 2024-11-23 09:16:38 -06:00
simplify check to give precedence to ansible native modules
This commit is contained in:
parent
1557dea8e5
commit
fa07744831
@ -223,9 +223,7 @@ if not fqcnmapfile or args.updatefqcnmapfile:
|
||||
fqcndict[nonfqcn] = []
|
||||
if fqcn not in fqcndict[nonfqcn]:
|
||||
# this defines the precedence of the replacements made
|
||||
if fqcn.startswith('ansible.builtin.'):
|
||||
fqcndict[nonfqcn].insert(0, fqcn)
|
||||
elif fqcn.startswith('ansible.'):
|
||||
if fqcn.startswith('ansible.'):
|
||||
fqcndict[nonfqcn].insert(0, fqcn)
|
||||
else:
|
||||
fqcndict[nonfqcn].append(fqcn)
|
||||
|
Loading…
Reference in New Issue
Block a user