From 95bb7c52fe10327dcc3903d695395e53e9bf48b7 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Mon, 22 Jul 2024 21:31:27 +0200 Subject: [PATCH] bundles/apt: add bissing default for update commands --- bundles/apt/items.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/apt/items.py b/bundles/apt/items.py index 5d055d3..05528d0 100644 --- a/bundles/apt/items.py +++ b/bundles/apt/items.py @@ -28,7 +28,7 @@ actions = { 'cascade_skip': False, }, 'apt_execute_update_commands': { - 'command': ' && '.join(sorted(node.metadata.get('apt/additional_update_commands'))), + 'command': ' && '.join(sorted(node.metadata.get('apt/additional_update_commands', {'true'}))), 'triggered': True, }, }