Sfoglia il codice sorgente

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 anni fa
parent
commit
adbce9c8eb
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 3 eliminazioni
  1. +1
    -3
      linux/files/modprobe.conf.jinja

+ 1
- 3
linux/files/modprobe.conf.jinja Vedi File

@@ -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…
Annulla
Salva