Parcourir la source

Merge pull request #945 from netbootxyz/mint_tune

Check for squash in key for lmde
Antony Messerli il y a 3 ans
Parent
commit
c32821c0a8
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      roles/netbootxyz/templates/menu/live-mint.ipxe.j2

+ 1 - 1
roles/netbootxyz/templates/menu/live-mint.ipxe.j2

@@ -33,7 +33,7 @@ goto flavor_select
 
 :lmde
 {% for key, value in endpoints.items() | sort %}
-{% if value.os == "mint" and value.version == "lmde" %}
+{% if value.os == "mint" and 'squash' in key and value.version == "lmde" %}
 item {{ key }} ${space} {{ value.os | title }} {{ value.version }} {{ value.flavor | title}}
 {% endif %}
 {% endfor %}