From 80ab4e6889a732acf6c3f767a47103fd42614589 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sat, 12 Jul 2025 14:19:14 +1000 Subject: [PATCH] chore: update cobbler for el9 (#353) - update cobbler/cobbler-web package - update path for ipxebins Reviewed-on: https://git.unkin.net/unkin/puppet-prod/pulls/353 --- site/profiles/manifests/cobbler/ipxebins.pp | 4 ++-- site/profiles/manifests/cobbler/params.pp | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/site/profiles/manifests/cobbler/ipxebins.pp b/site/profiles/manifests/cobbler/ipxebins.pp index 1fc0bf9..35e5394 100644 --- a/site/profiles/manifests/cobbler/ipxebins.pp +++ b/site/profiles/manifests/cobbler/ipxebins.pp @@ -6,7 +6,7 @@ class profiles::cobbler::ipxebins { # download the custom undionly.kpxe file # https://gist.github.com/rikka0w0/50895b82cbec8a3a1e8c7707479824c1 exec { 'download_undionly_kpxe': - command => 'wget -O /var/lib/tftpboot/undionly.kpxe http://repos.main.unkin.net/unkin/8/x86_64/os/Archives/undionly.kpxe', + command => 'wget -O /var/lib/tftpboot/undionly.kpxe http://boot.ipxe.org/undionly.kpxe', path => ['/bin', '/usr/bin'], creates => '/var/lib/tftpboot/undionly.kpxe', } @@ -27,7 +27,7 @@ class profiles::cobbler::ipxebins { # download the custom ipxe.efi file # https://gist.github.com/rikka0w0/50895b82cbec8a3a1e8c7707479824c1 exec { 'download_ipxe_efi': - command => 'wget -O /var/lib/tftpboot/ipxe.efi http://repos.main.unkin.net/unkin/8/x86_64/os/Archives/ipxe.efi', + command => 'wget -O /var/lib/tftpboot/ipxe.efi http://boot.ipxe.org/ipxe.efi', path => ['/bin', '/usr/bin'], creates => '/var/lib/tftpboot/ipxe.efi', } diff --git a/site/profiles/manifests/cobbler/params.pp b/site/profiles/manifests/cobbler/params.pp index 2b51acf..ee71c2d 100644 --- a/site/profiles/manifests/cobbler/params.pp +++ b/site/profiles/manifests/cobbler/params.pp @@ -12,7 +12,6 @@ class profiles::cobbler::params ( Boolean $cache_enabled = false, Array $packages = [ 'cobbler', - 'cobbler3.2-web', 'httpd', 'syslinux', 'dnf-plugins-core',