Просмотр исходного кода

add fedora 32 live assets and bump version in prep for release

thelamer 5 лет назад
Родитель
Сommit
38362af892
2 измененных файлов с 10 добавлено и 1 удалено
  1. 9 0
      roles/netbootxyz/templates/menu/live-fedora.ipxe.j2
  2. 1 1
      version.txt

+ 9 - 0
roles/netbootxyz/templates/menu/live-fedora.ipxe.j2

@@ -10,12 +10,21 @@ set os Fedora Live
 menu ${os} - Current Arch [ ${arch} ]
 iseq ${arch} x86_64 && set arch_a amd64 || set arch_a ${arch}
 item --gap ${os} Versions
+item 32 ${space} ${os} 32
 item 31 ${space} ${os} 31
 choose live_version || goto live_exit
 menu ${os} ${live_version}
 item --gap ${os} Flavors
 goto ${live_version}
 
+:32
+{% for key, value in endpoints.items() | sort %}
+{% if value.os == "fedora" and value.version == 32 %}
+item {{ key }} ${space} {{ value.os | title }} {{ value.version }} {{ value.flavor | title}}
+{% endif %}
+{% endfor %}
+goto flavor_select
+
 :31
 {% for key, value in endpoints.items() | sort %}
 {% if value.os == "fedora" and value.version == 31 %}

+ 1 - 1
version.txt

@@ -1 +1 @@
-2.0.13
+2.0.14