Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a container definition for Rocky Linux 9.3 #36

Merged
merged 1 commit into from
Dec 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/container-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ jobs:
version: 9.2
context: rockylinux-9
file: rockylinux-9/Containerfile-9.2
- os: rockylinux
version: 9.3
context: rockylinux-9
file: rockylinux-9/Containerfile-9.3
- os: leap
version: 15
context: leap
Expand Down
58 changes: 58 additions & 0 deletions rockylinux-9/Containerfile-9.3
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
FROM docker.io/library/rockylinux:9.3

RUN rm -f /etc/yum.repos.d/*.repo \
&& dnf clean all

COPY yum.repos.d-9.3/*.repo /etc/yum.repos.d

RUN dnf update -y \
&& dnf install -y --allowerasing \
coreutils \
cpio \
dhclient \
e2fsprogs \
ethtool \
findutils \
initscripts \
ipmitool \
iproute \
kernel-core \
kernel-modules \
ncurses \
net-tools \
NetworkManager \
nfs-utils \
openssh-clients \
openssh-server \
pciutils \
policycoreutils-python-utils \
psmisc \
rsync \
rsyslog \
strace \
selinux-policy-targeted \
wget \
which \
words \
rdma-core \
&& dnf clean all

RUN touch /etc/sysconfig/disable-deprecation-warnings

# For SELinux enabled nodes:
# The wwclient service fails to start on boot if appropriate SELinux file
# context label is not set for /warewulf/wwclient.
# Permanently assign bin_t fcontent label for wwclient binary that is
# deployed by wwinit overlay because warewulf runs `restorecon -R /` on node
# boot, clobbering any existing labels set in the overlay itself.
#
RUN semanage fcontext -N -a -t bin_t /warewulf/wwclient

COPY excludes /etc/warewulf/
COPY container_exit.sh /etc/warewulf/

CMD [ "/bin/echo", "-e", \
"This image is intended to be used with the Warewulf cluster management and", \
"\nprovisioning system.", \
"\n", \
"\nFor more information about Warewulf, visit https://warewulf.org" ]
36 changes: 18 additions & 18 deletions rockylinux-9/yum.repos.d-9.2/rocky-addons.repo
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[highavailability]
name=Rocky Linux 9.2 - High Availability
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=HighAvailability-$releasever$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/HighAvailability/$basearch/os/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/HighAvailability/$basearch/os/
gpgcheck=1
enabled=0
countme=1
Expand All @@ -21,7 +21,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[highavailability-debug]
name=Rocky Linux 9.2 - High Availability - Debug
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=HighAvailability-$releasever-debug$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/HighAvailability/$basearch/debug/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/HighAvailability/$basearch/debug/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -30,7 +30,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[highavailability-source]
name=Rocky Linux 9.2 - High Availability - Source
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=source&repo=HighAvailability-$releasever-source$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/HighAvailability/source/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/HighAvailability/source/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -39,7 +39,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[resilientstorage]
name=Rocky Linux 9.2 - Resilient Storage
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=ResilientStorage-$releasever$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/ResilientStorage/$basearch/os/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/ResilientStorage/$basearch/os/
gpgcheck=1
enabled=0
countme=1
Expand All @@ -49,7 +49,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[resilientstorage-debug]
name=Rocky Linux 9.2 - Resilient Storage - Debug
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=ResilientStorage-$releasever-debug$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/ResilientStorage/$basearch/debug/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/ResilientStorage/$basearch/debug/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -58,7 +58,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[resilientstorage-source]
name=Rocky Linux 9.2 - Resilient Storage - Source
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=source&repo=ResilientStorage-$releasever-source$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/ResilientStorage/source/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/ResilientStorage/source/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -67,7 +67,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[nfv]
name=Rocky Linux 9.2 - NFV
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=NFV-$releasever$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/NFV/$basearch/os/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/NFV/$basearch/os/
gpgcheck=1
enabled=0
countme=1
Expand All @@ -77,7 +77,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[nfv-debug]
name=Rocky Linux 9.2 - NFV Debug
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=RT-$releasever-debug$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/NFV/$basearch/debug/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/NFV/$basearch/debug/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -86,7 +86,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[nfv-source]
name=Rocky Linux 9.2 - NFV Source
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=RT-$releasever-source$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/NFV/source/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/NFV/source/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -95,7 +95,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[rt]
name=Rocky Linux 9.2 - Realtime
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=RT-$releasever$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/RT/$basearch/os/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/RT/$basearch/os/
gpgcheck=1
enabled=0
countme=1
Expand All @@ -105,7 +105,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[rt-debug]
name=Rocky Linux 9.2 - Realtime Debug
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=RT-$releasever-debug$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/RT/$basearch/debug/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/RT/$basearch/debug/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -114,7 +114,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[rt-source]
name=Rocky Linux 9.2 - Realtime Source
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=RT-$releasever-source$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/RT/source/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/RT/source/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -123,7 +123,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[sap]
name=Rocky Linux 9.2 - SAP
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=SAP-$releasever$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/SAP/$basearch/os/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/SAP/$basearch/os/
gpgcheck=1
enabled=0
countme=1
Expand All @@ -133,7 +133,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[sap-debug]
name=Rocky Linux 9.2 - SAP Debug
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=SAP-$releasever-debug$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/SAP/$basearch/debug/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/SAP/$basearch/debug/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -142,7 +142,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[sap-source]
name=Rocky Linux 9.2 - SAP Source
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=SAP-$releasever-source$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/SAP/source/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/SAP/source/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -151,7 +151,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[saphana]
name=Rocky Linux 9.2 - SAPHANA
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=SAPHANA-$releasever$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/SAPHANA/$basearch/os/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/SAPHANA/$basearch/os/
gpgcheck=1
enabled=0
countme=1
Expand All @@ -161,7 +161,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[saphana-debug]
name=Rocky Linux 9.2 - SAPHANA Debug
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=SAPHANA-$releasever-debug$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/SAPHANA/$basearch/debug/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/SAPHANA/$basearch/debug/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -170,7 +170,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[saphana-source]
name=Rocky Linux 9.2 - SAPHANA Source
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=SAPHANA-$releasever-source$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/SAPHANA/source/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/SAPHANA/source/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand Down
6 changes: 3 additions & 3 deletions rockylinux-9/yum.repos.d-9.2/rocky-devel.repo
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[devel]
name=Rocky Linux 9.2 - Devel WARNING! FOR BUILDROOT ONLY DO NOT LEAVE ENABLED
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=devel-$releasever$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/devel/$basearch/os/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/devel/$basearch/os/
gpgcheck=1
enabled=0
countme=1
Expand All @@ -14,7 +14,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[devel-debug]
name=Rocky Linux 9.2 - Devel Debug WARNING! FOR BUILDROOT ONLY DO NOT LEAVE ENABLED
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=devel-$releasever-debug$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/devel/$basearch/debug/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/devel/$basearch/debug/tree/
gpgcheck=1
enabled=0
countme=1
Expand All @@ -23,7 +23,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[devel-source]
name=Rocky Linux 9.2 - Devel Source WARNING! FOR BUILDROOT ONLY DO NOT LEAVE ENABLED
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=devel-$releasever-source$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/devel/source/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/devel/source/tree/
gpgcheck=1
enabled=0
countme=1
Expand Down
12 changes: 6 additions & 6 deletions rockylinux-9/yum.repos.d-9.2/rocky-extras.repo
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[extras]
name=Rocky Linux 9.2 - Extras
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=extras-$releasever$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/extras/$basearch/os/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/extras/$basearch/os/
gpgcheck=1
enabled=1
countme=1
Expand All @@ -21,7 +21,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[extras-debug]
name=Rocky Linux 9.2 - Extras Debug
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=extras-$releasever-debug$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/extras/$basearch/debug/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/extras/$basearch/debug/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -30,7 +30,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[extras-source]
name=Rocky Linux 9.2 - Extras Source
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=extras-$releasever-source$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/extras/source/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/extras/source/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -39,7 +39,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[plus]
name=Rocky Linux 9.2 - Plus
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=plus-$releasever$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/plus/$basearch/os/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/plus/$basearch/os/
gpgcheck=1
enabled=0
countme=1
Expand All @@ -49,7 +49,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[plus-debug]
name=Rocky Linux 9.2 - Plus - Debug
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=plus-$releasever-debug$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/plus/$basearch/debug/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/plus/$basearch/debug/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -58,7 +58,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[plus-source]
name=Rocky Linux 9.2 - Plus - Source
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=source&repo=plus-$releasever-source$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/plus/source/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/plus/source/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand Down
18 changes: 9 additions & 9 deletions rockylinux-9/yum.repos.d-9.2/rocky.repo
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[baseos]
name=Rocky Linux 9.2 - BaseOS
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=BaseOS-$releasever$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/BaseOS/$basearch/os/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/BaseOS/$basearch/os/
gpgcheck=1
enabled=1
countme=1
Expand All @@ -21,7 +21,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[baseos-debug]
name=Rocky Linux 9.2 - BaseOS - Debug
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=BaseOS-$releasever-debug$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/BaseOS/$basearch/debug/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/BaseOS/$basearch/debug/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -30,7 +30,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[baseos-source]
name=Rocky Linux 9.2 - BaseOS - Source
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=source&repo=BaseOS-$releasever-source$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/BaseOS/source/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/BaseOS/source/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -39,7 +39,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[appstream]
name=Rocky Linux 9.2 - AppStream
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=AppStream-$releasever$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/AppStream/$basearch/os/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/AppStream/$basearch/os/
gpgcheck=1
enabled=1
countme=1
Expand All @@ -49,7 +49,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[appstream-debug]
name=Rocky Linux 9.2 - AppStream - Debug
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=AppStream-$releasever-debug$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/AppStream/$basearch/debug/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/AppStream/$basearch/debug/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -58,7 +58,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[appstream-source]
name=Rocky Linux 9.2 - AppStream - Source
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=source&repo=AppStream-$releasever-source$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/AppStream/source/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/AppStream/source/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -67,7 +67,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[crb]
name=Rocky Linux 9.2 - CRB
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=CRB-$releasever$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/CRB/$basearch/os/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/CRB/$basearch/os/
gpgcheck=1
enabled=0
countme=1
Expand All @@ -77,7 +77,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[crb-debug]
name=Rocky Linux 9.2 - CRB - Debug
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=$basearch&repo=CRB-$releasever-debug$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/CRB/$basearch/debug/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/CRB/$basearch/debug/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand All @@ -86,7 +86,7 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9
[crb-source]
name=Rocky Linux 9.2 - CRB - Source
#mirrorlist=https://mirrors.rockylinux.org/mirrorlist?arch=source&repo=CRB-$releasever-source$rltype
baseurl=http://dl.rockylinux.org/pub/rocky/9.2/CRB/source/tree/
baseurl=http://dl.rockylinux.org/vault/rocky/9.2/CRB/source/tree/
gpgcheck=1
enabled=0
metadata_expire=6h
Expand Down
Loading