mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Sort package names
This commit is contained in:
parent
c31818b4aa
commit
878f67674a
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ class KiwiExporter(object):
|
|||
:return:
|
||||
'''
|
||||
pkgs = etree.SubElement(node, 'packages')
|
||||
for pkg_name, pkg_version in self._data.software.get('packages', {}).items():
|
||||
for pkg_name, pkg_version in sorted(self._data.software.get('packages', {}).items()):
|
||||
pkg = etree.SubElement(pkgs, 'package')
|
||||
pkg.set('name', pkg_name)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue