From b9ea80434520ef17a276968a8b8c8e64cfdf0488 Mon Sep 17 00:00:00 2001 From: casjay Date: Sun, 13 Sep 2026 11:17:34 -0400 Subject: [PATCH] :recycle: rename casjay-base/centos and pkmgr/centos references to rhel - update hardcoded repo URLs/paths to the renamed casjay-base/rhel and pkmgr/rhel GitHub repos (formerly centos), following the org-wide centos->rhel rename since the repos now target the whole RHEL family (RHEL, CentOS Stream, AlmaLinux, Rocky, Oracle Linux), not just CentOS Files changed: - Dockerfile.8-dev: rename centos->rhel references - Dockerfile.9-dev: rename centos->rhel references --- Dockerfile.8-dev | 4 ++-- Dockerfile.9-dev | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.8-dev b/Dockerfile.8-dev index a8b9095..c0e8397 100644 --- a/Dockerfile.8-dev +++ b/Dockerfile.8-dev @@ -114,7 +114,7 @@ RUN echo "Initializing packages before copying files to image"; \ RUN echo "Setting up dev system"; \ if [ -f "/usr/local/bin/pkmgr" ] ; then rm -Rf "/usr/local/bin/pkmgr"; fi; \ rm -f /etc/yum.repos.d/*crb*.repo 2>/dev/null || true; \ - bash -c "$(curl -q -LSsf "https://github.com/casjay-base/centos/raw/main/root/.local/bin/fetch-repo-file")"; \ + bash -c "$(curl -q -LSsf "https://github.com/casjay-base/rhel/raw/main/root/.local/bin/fetch-repo-file")"; \ sed -i 's|/crb|/powertools|Ig; s|\[casjay-os-crb\]|[casjay-os-powertools]|g; s|AlmaLinux CRB|AlmaLinux PowerTools|g' /etc/yum.repos.d/*.repo 2>/dev/null || true; \ rm -f /etc/yum.repos.d/*crb*.repo 2>/dev/null || true; \ dnf clean all 2>/dev/null || true; \ @@ -122,7 +122,7 @@ RUN echo "Setting up dev system"; \ git clone -q https://github.com/casjay-dotfiles/scripts "/usr/local/share/CasjaysDev/scripts" && \ /usr/local/share/CasjaysDev/scripts/install.sh; \ dnf module -y reset php;dnf module -y install php:remi-$PHP_VERSION; \ - pkg="$(curl -q -LSsf "https://github.com/pkmgr/centos/raw/main/lists/development.list")"; \ + pkg="$(curl -q -LSsf "https://github.com/pkmgr/rhel/raw/main/lists/development.list")"; \ [ -n "$pkg" ] && yum install -yy --skip-broken "$pkg" COPY ./rootfs/. / diff --git a/Dockerfile.9-dev b/Dockerfile.9-dev index 310039f..42ddac0 100644 --- a/Dockerfile.9-dev +++ b/Dockerfile.9-dev @@ -108,12 +108,12 @@ RUN echo "Setting up and installing packages"; \ RUN echo "Setting up dev system"; \ if [ -f "/usr/local/bin/pkmgr" ] ; then rm -Rf "/usr/local/bin/pkmgr"; fi; \ - bash -c "$(curl -q -LSsf "https://github.com/casjay-base/centos/raw/main/root/.local/bin/fetch-repo-file")"; \ + bash -c "$(curl -q -LSsf "https://github.com/casjay-base/rhel/raw/main/root/.local/bin/fetch-repo-file")"; \ [ ! -d "/usr/local/share/CasjaysDev/scripts" ] && \ git clone -q https://github.com/casjay-dotfiles/scripts "/usr/local/share/CasjaysDev/scripts" && \ /usr/local/share/CasjaysDev/scripts/install.sh; \ dnf module -y reset php;dnf module -y install php:remi-$PHP_VERSION; \ - pkg="$(curl -q -LSsf "https://github.com/pkmgr/centos/raw/main/lists/development.list")"; \ + pkg="$(curl -q -LSsf "https://github.com/pkmgr/rhel/raw/main/lists/development.list")"; \ [ -n "$pkg" ] && yum install -yy --skip-broken "$pkg" RUN echo "Initializing packages before copying files to image"; \