Преглед на файлове

Remove anarchy linux

Closes: https://github.com/netbootxyz/netboot.xyz/issues/1320
Antony Messerli преди 1 година
родител
ревизия
169d87c31b
променени са 5 файла, в които са добавени 4 реда и са изтрити 44 реда
  1. 4 0
      CHANGELOG.md
  2. 0 1
      README.md
  3. 0 8
      endpoints.yml
  4. 0 7
      roles/netbootxyz/defaults/main.yml
  5. 0 28
      roles/netbootxyz/templates/menu/anarchy.ipxe.j2

+ 4 - 0
CHANGELOG.md

@@ -7,6 +7,10 @@ All notable changes to this project will be documented in this file.
 
 ## [2.0.74] - 2023-00-00
 
+### Removed
+
+- Anarchy Linux
+
 ## [2.0.73] - 2023-10-13
 
 ### Added

+ 0 - 1
README.md

@@ -122,7 +122,6 @@ In addition to being able to host netboot.xyz locally, you can also create your
 |------------|-----------------|------------------|---------------|
 | AlmaLinux | https://almalinux.org/ | Yes | No |
 | Alpine Linux | https://alpinelinux.org | Yes | No |
-| Anarchy Linux | https://anarchyinstaller.org | Yes | No |
 | Arch Linux | https://www.archlinux.org | Yes | No |
 | Backbox | https://www.backbox.org | No | Yes |
 | BlackArch Linux | https://blackarch.org | Yes | Yes |

+ 0 - 8
endpoints.yml

@@ -418,14 +418,6 @@ endpoints:
     - airootfs.sfs
     os: bluestar
     version: current
-  anarchy:
-    path: /asset-mirror/releases/download/1.3.4-54188370/
-    files:
-    - initrd
-    - vmlinuz
-    - airootfs.sfs
-    os: anarchy
-    version: current
   zeninstall:
     path: /asset-mirror/releases/download/2020.05.27-d3f9c78c/
     files:

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

@@ -142,13 +142,6 @@ releases:
       name: '3.18'
     - code_name: edge
       name: Edge (development)
-  anarchy:
-    enabled: true
-    menu: linux
-    name: Anarchy Linux
-    versions:
-    - code_name: current
-      name: current
   archlinux:
     base_dir: archlinux
     enabled: true

+ 0 - 28
roles/netbootxyz/templates/menu/anarchy.ipxe.j2

@@ -1,28 +0,0 @@
-#!ipxe
-
-# Anarchy Linux Operating System
-# https://anarchyinstaller.org/
-
-goto ${menu}
-
-:anarchy
-set os {{ releases.anarchy.name }}
-set ipparam BOOTIF=${netX/mac} ip=dhcp net.ifnames=0
-menu ${os} Installers
-{% for item in releases.anarchy.versions %}
-item {{ item.code_name }} ${space} ${os} {{ item.name }}
-{% endfor %}
-choose anarchy_version || goto anarchy_exit
-goto anarchy_boot
-
-:anarchy_boot
-imgfree
-set url ${live_endpoint}{{ endpoints.anarchy.path }}
-kernel ${url}vmlinuz archisobasedir=arch ${ipparam} archiso_http_srv=${url} {{ kernel_params }}
-initrd ${url}initrd
-boot
-goto anarchy_exit
-
-:anarchy_exit
-clear menu
-exit 0