This commit is contained in:
mwiegand 2022-06-23 02:08:29 +02:00
parent 12268daad6
commit ce4890e108
4 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,3 @@
% for key, value in sorted(options.items()):
options ${module} ${key}=${value}
% endfor

14
bundles/modprobe/items.py Normal file
View file

@ -0,0 +1,14 @@
for module, options in node.metadata.get('modprobe').items():
if not options:
continue
files['/etc/modprobe.d'] = {
'source': 'modprobe.conf',
'content_type': 'mako',
'context': {
'module': module,
'options': options,
},
'mode': '0644',
}

View file

@ -0,0 +1,3 @@
defaults = {
'modprobe': {}
}

View file

@ -4,6 +4,7 @@
],
'bundles': [
'apt',
# 'modprobe',
],
'metadata': {
'apt': {