diff --git a/CHANGELOG.md b/CHANGELOG.md index 459ebb5284..d0b9ce7d1a 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/README.md b/README.md index afadfafd91..4dc63ced89 100644 --- a/README.md +++ b/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 | diff --git a/endpoints.yml b/endpoints.yml index 2d484721dc..56591d35ac 100644 --- a/endpoints.yml +++ b/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: diff --git a/roles/netbootxyz/defaults/main.yml b/roles/netbootxyz/defaults/main.yml index fa3d7d005f..c0b504c096 100644 --- a/roles/netbootxyz/defaults/main.yml +++ b/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 diff --git a/roles/netbootxyz/templates/menu/anarchy.ipxe.j2 b/roles/netbootxyz/templates/menu/anarchy.ipxe.j2 deleted file mode 100644 index 932c8fbb87..0000000000 --- a/roles/netbootxyz/templates/menu/anarchy.ipxe.j2 +++ /dev/null @@ -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