Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • original/rpms/rocky-release
1 result
Show changes
Commits on Source (6)
......@@ -8,8 +8,6 @@ disable systemd-networkd-wait-online.service
# We want to update systemd-boot from packaging scriptlets after updates.
disable systemd-boot-update.service
# https://fedoraproject.org/wiki/Changes/systemd-resolved
enable systemd-resolved.service
# https://fedoraproject.org/wiki/Changes/EnableSystemdOomd
enable systemd-oomd.service
......@@ -26,6 +24,7 @@ enable sshd.service
# Locally-running services
enable atd.*
enable crond.*
enable rpcbind.*
# Approved by FESCo - https://fedorahosted.org/fesco/ticket/636
enable chronyd.service
......@@ -233,6 +232,7 @@ enable abrt-xorg.service
enable abrt-vmcore.service
# Locally-running services
enable kdump.service
enable ksm.service
enable ksmtuned.service
enable rootfs-resize.service
......
# -*- coding: utf-8 -*-
We want to thank you for installing Rocky Linux.
We want to thank you for installing Rocky Linux 10.
The Rocky Linux OS Distribution would not be possible without the hard work and
dedication of the community. Building a distribution is far from easy, but with
unified visions and goals, anything is possible, and Rocky is one of many
examples of this.
Rocky Linux would not be possible without the hard work and dedication of the
community volunteers. Building a distribution and maintaining it is not an easy
task. It is you, the user, that keeps our entire project motivated to continue
working on this distribution.
The outpouring support from the community and the amount of people who to
together to support us, we want to thank you for believing in us and giving us
a chance. And as always, we hope you enjoy this release.
Thank you.
Thank you for all of your continued support and thank you to all of those who
came together to help test and support this release. We really hope you enjoy
this release of Rocky Linux.
# Special Recognition #
Mustafa Gezen
......
# Note to packagers/builders:
#
# If you wish to build the LookAhead or Beta variant of this package, make sure
# that you are setting --with=rlbeta or --with=rllookahead on your mock
# command. See the README for more information.
%bcond_with rlbeta
%bcond_with rllookahead
%bcond_with rloverride
%define debug_package %{nil}
# Product information
......@@ -15,19 +5,20 @@
%define variant_titlecase Server
%define variant_lowercase server
# Distribution Name and Version
# Distribution Version Information
%define distro_name Rocky Linux
%define distro %{distro_name}
%define distro_code Red Quartz
%define major 10
%define minor 0
%define rocky_rel 0%{?rllh:.%{rllh}}%{!?rllh:.15}
%define rocky_rel 0.20
%define rpm_license BSD-3-Clause
%define dist .el%{major}
%define home_url https://rockylinux.org/
%define bug_url https://bugs.rockylinux.org/
%define debug_url https://debuginfod.rockylinux.org/
%define dist_vendor RESF
%define vendor_url https://resf.org/
%define contentdir stg/rocky
%define sigcontent pub/sig
......@@ -36,45 +27,6 @@
%define os_bug_name Rocky-Linux-%{major}
%define support_end 2035-05-31
################################################################################
# Rocky LookAhead Section
#
# Reset defines for LookAhead variant. Default is stable if 0 or undefined.
%if %{with rllookahead}
%define minor 0
%define contentdir stg/rocky-lh
%define rltype -lookahead
%define rlstatement LookAhead
%endif
# End Rocky LookAhead Section
################################################################################
################################################################################
# Rocky Beta Section
#
# Reset defines for Beta variant. Default is stable if 0 or undefined.
# We do NOT override the minor version number here.
%if %{with rlbeta}
%define contentdir stg/rocky-beta
%define rltype -beta
%define rlstatement Beta
%endif
# End Rocky Beta Section
################################################################################
################################################################################
# Rocky Override Section
#
# Resets only the dist tag for the override package. All this does is ensure
# that only the rhel macros and settings are provided - This is useful in the
# case of a build that cannot be properly debranded (eg dotnet).
%if %{with rloverride}
%define dist .el%{major}.override
%define rlosid rhel
%endif
# End Rocky Override Section
################################################################################
%define base_release_version %{major}
%define dist_release_version %{major}
%define full_release_version %{major}.%{minor}
......@@ -216,12 +168,6 @@ Provides: centos-sb-certs = %{version}-%{release}
This package contains the %{distro_name} secureboot public certificates.
%prep
%if %{with rllookahead} && %{with rlbeta}
echo "!! WARNING !!"
echo "Both LookAhead and Beta were enabled. This is not supported."
echo "As a result: BUILD FAILED."
exit 1
%endif
echo Good.
%build
......@@ -256,6 +202,8 @@ ANSI_COLOR="0;32"
LOGO="fedora-logo-icon"
CPE_NAME="cpe:/o:rocky:rocky:%{major}::baseos"
HOME_URL="%{home_url}"
VENDOR_NAME="%{dist_vendor}"
VENDOR_URL="%{vendor_url}"
BUG_REPORT_URL="%{bug_url}"
SUPPORT_END="%{support_end}"
ROCKY_SUPPORT_PRODUCT="%{os_bug_name}"
......@@ -297,6 +245,8 @@ cat > %{buildroot}%{_rpmmacrodir}/macros.dist << EOF
%%dist_home_url %{home_url}
%%dist_bug_report_url %{bug_url}
%%dist_debuginfod_url %{debug_url}
#### End basic Rocky Linux macros
EOF
# Data directory
......@@ -482,6 +432,21 @@ install -p -m 0644 %{SOURCE102} %{buildroot}%{_sysconfdir}/pki/rpm-gpg/
%{_datadir}/pki/sb-certs/*
%changelog
* Tue Oct 01 2024 Louis Abel <label@resf.org> - 10.0-0.20
- Enable kdump.service
* Sat Sep 21 2024 Louis Abel <label@resf.org> - 10.0-0.19
- Restructure spec file and remove unused macros
* Tue Aug 13 2024 Louis Abel <label@resf.org> - 10.0-0.18
- Enable rpcbind.service/socket
* Mon Aug 12 2024 Louis Abel <label@resf.org> - 10.0-0.17
- Remove systemd-resolved.service
* Fri Jul 26 2024 Louis Abel <label@resf.org> - 10.0-0.16
- Add a vendor os-release information
* Sun Jul 14 2024 Louis Abel <label@resf.org> - 10.0-0.15
- Fix repo files
......