This commit is contained in:
mwiegand 2021-10-13 02:28:30 +02:00
parent 968f5e8d7d
commit e26b259009
3 changed files with 36 additions and 0 deletions

27
bundles/locale/items.py Normal file
View file

@ -0,0 +1,27 @@
locale = node.metadata.get('locale')
files = {
'/etc/locale.gen': {
'content': f"{locale} {locale.split('.')[1]}\n",
'triggers': {
'action:locale-gen',
},
}
}
actions = {
'locale-gen': {
'command': 'locale-gen',
'triggered': True,
},
'systemd-locale': {
'command': f'localectl set-locale LANG="{locale}"',
'unless': f'localectl | grep -Fi "system locale" | grep -Fi "{locale}"',
'preceded_by': {
'action:locale-gen',
},
'needs': {
'action:locale-gen',
},
},
}

View file

@ -0,0 +1,8 @@
defaults = {
'apt': {
'packages': {
'locales': {},
},
},
'locale': 'en_US.UTF-8',
}

View file

@ -5,6 +5,7 @@
'bundles': [
'hostname',
'hosts',
'locale',
'network',
'ssh',
'systemd',