From 99c12b610635b634c6cf6c0b09660c80d04a2892 Mon Sep 17 00:00:00 2001 From: mwiegand Date: Wed, 10 Nov 2021 00:14:41 +0100 Subject: [PATCH] fix locale deps --- bundles/locale/items.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bundles/locale/items.py b/bundles/locale/items.py index 5c51b8b..09c13f2 100644 --- a/bundles/locale/items.py +++ b/bundles/locale/items.py @@ -20,6 +20,9 @@ actions = { 'locale-gen': { 'command': 'locale-gen', 'triggered': True, + 'needs': { + 'pkg_apt:locales', + }, }, 'systemd-locale': { 'command': f'localectl set-locale LANG="{default_locale}"', @@ -27,8 +30,5 @@ actions = { 'preceded_by': { 'action:locale-gen', }, - 'needs': { - 'action:locale-gen', - }, }, }