Parcourir la source
Merge pull request #149 from mnederlof/modprobe-template-fix
Fixing layout of modprobe.conf file with more than one option
pull/143/merge
Filip Pytloun
il y a 6 ans
Parent
révision
adbce9c8eb
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec
1 ajouts et
3 suppressions
-
linux/files/modprobe.conf.jinja
|
|
@@ -2,8 +2,6 @@ |
|
|
|
blacklist {{ module_name }} |
|
|
|
{%- else -%} |
|
|
|
|
|
|
|
{%- for option, value in module_content.get('option', {}) | dictsort -%} |
|
|
|
options {{ module_name }} {{ option }}={{ value }} |
|
|
|
{%- endfor %} |
|
|
|
options {{ module_name }}{% for option, value in module_content.get('option', {}) | dictsort %} {{ option }}={{ value }}{% endfor %} |
|
|
|
|
|
|
|
{%- endif %} |