sort
This commit is contained in:
parent
d4738d762b
commit
12268daad6
1 changed files with 3 additions and 3 deletions
|
@ -61,13 +61,13 @@ for host, sources in hosts.items():
|
||||||
source.options['signed-by'] = [destination_path]
|
source.options['signed-by'] = [destination_path]
|
||||||
|
|
||||||
files[f'/etc/apt/sources.list.d/{host}.list'] = {
|
files[f'/etc/apt/sources.list.d/{host}.list'] = {
|
||||||
'content': '\n'.join(set(
|
'content': '\n'.join(sorted(set(
|
||||||
str(source).format(
|
str(source).format(
|
||||||
release=node.metadata.get('os_release'),
|
release=node.metadata.get('os_release'),
|
||||||
version=node.os_version[0], # WIP crystal
|
version=node.os_version[0], # WIP crystal
|
||||||
)
|
)
|
||||||
for source in sorted(dict.fromkeys(sources))
|
for source in sources
|
||||||
)),
|
))),
|
||||||
'triggers': {
|
'triggers': {
|
||||||
'action:apt_update',
|
'action:apt_update',
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue