Bläddra i källkod

Remove Scientific Linux

Antony Messerli 9 månader sedan
förälder
incheckning
1b711afa94

+ 4 - 0
CHANGELOG.md

@@ -7,6 +7,10 @@ All notable changes to this project will be documented in this file.
 
 
 ## [2.0.80] - 2024-00-00
 ## [2.0.80] - 2024-00-00
 
 
+### Removed
+
+- Scientific Linux (EOL)
+
 ## [2.0.79] - 2024-05-25
 ## [2.0.79] - 2024-05-25
 
 
 ### Added
 ### Added

+ 0 - 1
README.md

@@ -171,7 +171,6 @@ In addition to being able to host netboot.xyz locally, you can also create your
 | Red Hat Enterprise Linux | https://www.redhat.com | User supplied media | No |
 | Red Hat Enterprise Linux | https://www.redhat.com | User supplied media | No |
 | Regolith | https://regolith-linux.org | No | Yes |
 | Regolith | https://regolith-linux.org | No | Yes |
 | Rocky Linux | https://rockylinux.org/ | Yes | No |
 | Rocky Linux | https://rockylinux.org/ | Yes | No |
-| Scientific Linux | https://scientificlinux.org | Yes | No |
 | Septor | https://septor.sourceforge.io | No | Yes |
 | Septor | https://septor.sourceforge.io | No | Yes |
 | Slackware | https://www.slackware.com | Yes | No |
 | Slackware | https://www.slackware.com | Yes | No |
 | SmartOS | https://www.smartos.org/ | Yes | No |
 | SmartOS | https://www.smartos.org/ | Yes | No |

+ 0 - 15
roles/netbootxyz/defaults/main.yml

@@ -421,21 +421,6 @@ releases:
       name: 9 (Latest)
       name: 9 (Latest)
     - code_name: 8
     - code_name: 8
       name: 8 (Latest)
       name: 8 (Latest)
-  scientific:
-    base_dir: linux/scientific
-    enabled: true
-    menu: linux
-    mirror: http://ftp1.scientificlinux.org
-    name: Scientific Linux
-    versions:
-    - code_name: '7.9'
-      name: '7.9'
-    - code_name: '7.8'
-      name: '7.8'
-    - code_name: '7.7'
-      name: '7.7'
-    - code_name: '7.6'
-      name: '7.6'
   slackware:
   slackware:
     base_dir: slackware
     base_dir: slackware
     enabled: true
     enabled: true

+ 0 - 2
roles/netbootxyz/templates/menu/centos.ipxe.j2

@@ -22,8 +22,6 @@ isset ${osversion} || choose osversion || goto linux_menu
 echo ${cls}
 echo ${cls}
 iseq ${os_arch} x86_64 && set dir ${centos_base_dir}/${osversion}/BaseOS/${os_arch}/os ||
 iseq ${os_arch} x86_64 && set dir ${centos_base_dir}/${osversion}/BaseOS/${os_arch}/os ||
 iseq ${os_arch} aarch64 && set dir altarch/${osversion}/BaseOS/${os_arch}/os ||
 iseq ${os_arch} aarch64 && set dir altarch/${osversion}/BaseOS/${os_arch}/os ||
-iseq ${os_arch} x86_64 && iseq ${osversion} 7 && set dir ${centos_base_dir}/${osversion}/os/${os_arch} ||
-iseq ${os_arch} aarch64 && iseq ${osversion} 7 && set dir altarch/${osversion}/os/${os_arch} ||
 set repo ${centos_mirror}/${dir}
 set repo ${centos_mirror}/${dir}
 goto boottype
 goto boottype
 
 

+ 0 - 59
roles/netbootxyz/templates/menu/scientific.ipxe.j2

@@ -1,59 +0,0 @@
-#!ipxe
-
-# Scientific Linux Operating System
-# https://www.scientificlinux.org/
-
-isset ${dhcp-server} && set ipparam ip=dhcp || set ipparam ip=${ip}::${gateway}:${netmask}:::none nameserver=${dns}
-set ipparam BOOTIF=${netX/mac} ${ipparam}
-
-goto ${menu} ||
-
-:scientific
-clear osversion
-set os Scientific Linux
-menu ${os} ${arch}
-{% for item in releases.scientific.versions %}
-item {{ item.code_name }} ${space} ${os} {{ item.name }}
-{% endfor %}
-item other Choose other version [o]
-isset ${osversion} || choose osversion || goto linux_menu
-iseq ${osversion} other || goto scientific_skip_read_osversion
-echo ${cls}
-echo -n Enter version: ${} && read osversion
-:scientific_skip_read_osversion
-set dir ${scientific_base_dir}/${osversion}/${arch}/os
-set repo ${scientific_mirror}/${dir}
-
-goto boottype
-
-:boottype
-set ova ${os} ${osversion}
-menu ${os} ${arch} boot type
-item normal ${ova}
-item rescue ${ova} rescue
-item kickstart ${ova} specify kickstart url
-isset ${bt} || choose bt || goto scientific
-echo ${cls}
-iseq ${bt} rescue && goto rescue ||
-iseq ${bt} kickstart && goto kickstart ||
-goto bootos_images
-
-:rescue
-set params inst.rescue ||
-goto bootos_images
-
-:kickstart
-echo -n Specify kickstart URL for ${os} ${osversion}: && read ksurl
-set params ks=${ksurl} ||
-goto bootos_images
-
-:bootos_images
-imgfree
-kernel ${scientific_mirror}/${dir}/images/pxeboot/vmlinuz repo=${repo} ${params} ${ipparam} {{ kernel_params }}
-initrd ${scientific_mirror}/${dir}/images/pxeboot/initrd.img
-boot
-goto linux_menu
-
-:linux_menu
-clear menu
-exit 0