2021-12-21 14:56:24 +00:00
|
|
|
from inspect import cleandoc
|
|
|
|
from uuid import UUID
|
|
|
|
|
|
|
|
from bundlewrap.utils.text import italic
|
|
|
|
|
|
|
|
files = {
|
|
|
|
'/etc/default/locale': {
|
|
|
|
'content_type': 'mako',
|
|
|
|
'needs': {
|
|
|
|
'action:locale-gen',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'/etc/hosts': {
|
|
|
|
'content_type': 'mako',
|
|
|
|
},
|
|
|
|
'/etc/htoprc.global': {
|
|
|
|
'source': 'htoprc',
|
|
|
|
},
|
|
|
|
'/etc/motd': {
|
|
|
|
'content': '',
|
|
|
|
},
|
2021-12-21 17:04:17 +00:00
|
|
|
'/root/.terminfo/x/xterm-kitty': {
|
|
|
|
'content_type': 'binary',
|
|
|
|
},
|
2021-12-21 14:56:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
locale_needs = set()
|
|
|
|
for locale in sorted(node.metadata['locale']['installed']):
|
|
|
|
actions[f'ensure_locale_{locale}_is_enabled'] = {
|
|
|
|
'command': f"sed -i '/{locale}/s/^# *//g' /etc/locale.gen",
|
|
|
|
'unless': f"grep -e '^{locale}' /etc/locale.gen",
|
|
|
|
'triggers': {
|
|
|
|
'action:locale-gen',
|
|
|
|
},
|
|
|
|
'needs': locale_needs,
|
|
|
|
}
|
|
|
|
locale_needs = {f'action:ensure_locale_{locale}_is_enabled'}
|
|
|
|
|
|
|
|
actions = {
|
|
|
|
'locale-gen': {
|
|
|
|
'triggered': True,
|
|
|
|
'command': 'locale-gen',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
description = []
|
|
|
|
|
|
|
|
if node.metadata.get('nginx/vhosts', {}):
|
|
|
|
description.append('nginx vhosts:')
|
|
|
|
|
|
|
|
for vname, vconfig in sorted(node.metadata.get('nginx/vhosts', {}).items()):
|
|
|
|
if vconfig.get('ssl', 'letsencrypt') is not None:
|
|
|
|
proto = 'https'
|
|
|
|
else:
|
|
|
|
proto = 'http'
|
|
|
|
|
|
|
|
domain = vconfig.get('domain', vname)
|
|
|
|
|
|
|
|
description.append(' {}: {}://{}{}'.format(
|
|
|
|
vname,
|
|
|
|
proto,
|
|
|
|
domain,
|
|
|
|
vconfig.get('website_check_path', '/'),
|
|
|
|
))
|
|
|
|
|
|
|
|
if node.metadata.get('description', []):
|
|
|
|
description.append('') # divider line
|