瀏覽代碼

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 6 年之前
父節點
當前提交
adbce9c8eb
No account linked to committer's email address
共有 1 個文件被更改,包括 1 次插入3 次删除
  1. +1
    -3
      linux/files/modprobe.conf.jinja

+ 1
- 3
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 %}

Loading…
取消
儲存