From 12268daad6a3176969ca19fca2629dc545ca6e90 Mon Sep 17 00:00:00 2001 From: mwiegand Date: Thu, 23 Jun 2022 01:32:31 +0200 Subject: [PATCH] sort --- bundles/apt/items.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bundles/apt/items.py b/bundles/apt/items.py index 5ae21f8..0d1b4a3 100644 --- a/bundles/apt/items.py +++ b/bundles/apt/items.py @@ -61,13 +61,13 @@ for host, sources in hosts.items(): source.options['signed-by'] = [destination_path] files[f'/etc/apt/sources.list.d/{host}.list'] = { - 'content': '\n'.join(set( + 'content': '\n'.join(sorted(set( str(source).format( release=node.metadata.get('os_release'), version=node.os_version[0], # WIP crystal ) - for source in sorted(dict.fromkeys(sources)) - )), + for source in sources + ))), 'triggers': { 'action:apt_update', },