Compare commits
10 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c81f8b3540 | ||
|
|
59989cdcf1 | ||
|
|
90e6e9e2ea | ||
|
|
100c0bd722 | ||
|
|
c8559fc150 | ||
|
|
9b36e39b27 | ||
|
|
0ad1aab965 | ||
|
|
8c47980cce | ||
|
|
c8914f994c | ||
|
|
ad8da7feda |
3 changed files with 73 additions and 4 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -58,3 +58,8 @@
|
|||
/initscripts-10.19.tar.gz
|
||||
/initscripts-10.20.tar.gz
|
||||
/initscripts-10.21.tar.gz
|
||||
/initscripts-10.23.tar.gz
|
||||
/initscripts-10.24.tar.gz
|
||||
/initscripts-10.25.tar.gz
|
||||
/initscripts-10.26.tar.gz
|
||||
/initscripts-10.27.tar.gz
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ Requires: gawk \
|
|||
|
||||
Name: initscripts
|
||||
Summary: Basic support for legacy System V init scripts
|
||||
Version: 10.21
|
||||
Version: 10.27
|
||||
Release: 1%{?dist}
|
||||
|
||||
License: GPL-2.0-only
|
||||
|
|
@ -55,7 +55,7 @@ BuildRequires: make
|
|||
BuildRequires: systemd
|
||||
|
||||
Obsoletes: %{name} < 10.16-1
|
||||
Obsoletes: network-scripts < 10.21-1
|
||||
Obsoletes: network-scripts < 10.25-1
|
||||
|
||||
# === PATCHES =================================================================
|
||||
|
||||
|
|
@ -180,6 +180,11 @@ Please use systemd-volatile-root functionality instead, if possible.
|
|||
# This installs the NLS language files:
|
||||
%find_lang %{name}
|
||||
|
||||
%if "%{_sbindir}" == "%{_bindir}"
|
||||
# Some files get installed wrong, but if $(sbindir) is overriden, the build fails :(
|
||||
mv -v %{buildroot}/usr/sbin/* %{buildroot}%{_bindir}/
|
||||
%endif
|
||||
|
||||
# =============================================================================
|
||||
|
||||
%post
|
||||
|
|
@ -240,7 +245,7 @@ Please use systemd-volatile-root functionality instead, if possible.
|
|||
|
||||
# ---------------
|
||||
|
||||
%{_bindir}/*
|
||||
%{_bindir}/usleep
|
||||
%{_sbindir}/consoletype
|
||||
%{_sbindir}/genhostid
|
||||
|
||||
|
|
@ -255,6 +260,7 @@ Please use systemd-volatile-root functionality instead, if possible.
|
|||
# =============================================================================
|
||||
|
||||
%files -n initscripts-rename-device
|
||||
%license COPYING
|
||||
|
||||
%{_prefix}/lib/udev/rename_device
|
||||
|
||||
|
|
@ -263,6 +269,7 @@ Please use systemd-volatile-root functionality instead, if possible.
|
|||
# ---------------
|
||||
|
||||
%files -n initscripts-service
|
||||
%license COPYING
|
||||
|
||||
%dir %{_libexecdir}/%{name}
|
||||
%dir %{_libexecdir}/%{name}/legacy-actions
|
||||
|
|
@ -274,6 +281,7 @@ Please use systemd-volatile-root functionality instead, if possible.
|
|||
# ---------------
|
||||
|
||||
%files -n netconsole-service
|
||||
%license COPYING
|
||||
%config(noreplace) %{_sysconfdir}/sysconfig/netconsole
|
||||
|
||||
%{_libexecdir}/netconsole
|
||||
|
|
@ -282,6 +290,8 @@ Please use systemd-volatile-root functionality instead, if possible.
|
|||
# ---------------
|
||||
|
||||
%files -n readonly-root
|
||||
%license COPYING
|
||||
|
||||
%dir %{_sharedstatedir}/stateless
|
||||
%dir %{_sharedstatedir}/stateless/state
|
||||
%dir %{_sharedstatedir}/stateless/writable
|
||||
|
|
@ -296,6 +306,60 @@ Please use systemd-volatile-root functionality instead, if possible.
|
|||
# =============================================================================
|
||||
|
||||
%changelog
|
||||
* Thu Dec 11 2025 Jan Macku <jamacku@redhat.com> - 10.27-1
|
||||
- spec: add missing license files
|
||||
- build(deps): bump actions/checkout from 5 to 6
|
||||
- build(deps): bump actions/upload-artifact from 4 to 5
|
||||
- build(deps): bump github/codeql-action from 3 to 4
|
||||
- ci: fix issues with missing base commit
|
||||
- Translated using Weblate (Georgian)
|
||||
- Translated using Weblate (Indonesian)
|
||||
- Translated using Weblate (English (United Kingdom))
|
||||
- Translated using Weblate (Korean)
|
||||
- Translated using Weblate (Turkish)
|
||||
- man: add ifdown.8
|
||||
- build(deps): bump actions/checkout from 4 to 5
|
||||
- Translated using Weblate (Spanish)
|
||||
- Translated using Weblate (Georgian)
|
||||
- Translated using Weblate (Korean)
|
||||
- Translated using Weblate (Portuguese (Brazil))
|
||||
- Translated using Weblate (Polish)
|
||||
- Translated using Weblate (Greek)
|
||||
- Translated using Weblate (Greek)
|
||||
- Translated using Weblate (Spanish)
|
||||
- Translated using Weblate (Georgian)
|
||||
- Translated using Weblate (Greek)
|
||||
- Translated using Weblate (Italian)
|
||||
- Translated using Weblate (Chinese (Traditional) (zh_TW))
|
||||
- Translated using Weblate (Spanish)
|
||||
- Translated using Weblate (Finnish)
|
||||
- retry arping one more time in ifup-eth when sendto failed
|
||||
- Translated using Weblate (French)
|
||||
- ci: add dependency glib-2.0
|
||||
- network-functions: Fix a bug in is_nm_handling()
|
||||
|
||||
* Tue Aug 27 2024 Jan Macku <jamacku@redhat.com> - 10.26-1
|
||||
- Translated using Weblate (Turkish)
|
||||
- netconsole: var/lock -> run/lock
|
||||
- netconsole: source sysconfig/network only if it exists
|
||||
- netconsole: remove unused variables
|
||||
- netconsole: remove trailing whitespaces
|
||||
- Translated using Weblate (Turkish)
|
||||
|
||||
* Tue Jun 25 2024 Jan Macku <jamacku@redhat.com> - 10.25-1
|
||||
- Revert "fix: return support for network-scripts for Fedora 40"
|
||||
|
||||
* Wed May 29 2024 Jan Macku <jamacku@redhat.com> - 10.24-1
|
||||
- Fix build when %_bindir==%_sbindir
|
||||
|
||||
* Tue Apr 16 2024 Jan Macku <jamacku@redhat.com> - 10.23-1
|
||||
- fix: return support for network-scripts for Fedora 40
|
||||
|
||||
* Wed Mar 06 2024 Jan Macku <jamacku@redhat.com> - 10.22-1
|
||||
- Translated using Weblate (Georgian)
|
||||
- rename_device: free path after it is used
|
||||
- rename_device: remove trailing whitespaces
|
||||
|
||||
* Wed Feb 07 2024 Jan Macku <jamacku@redhat.com> - 10.21-1
|
||||
- fedora: don't build network-scripts rpm in f40+ (2/2)
|
||||
- ci: trigger copr build on every push to main branch
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (initscripts-10.21.tar.gz) = be3f7e61673666f07f5ebc79f8f367cd0547c1d39653e4ad929010a5a29626bfbc8a369ab4c67b1a5f6249362192bd9198891e68f148d3dd7aca8b1da2142366
|
||||
SHA512 (initscripts-10.27.tar.gz) = 951f88158eaf7409f7d65c9875c9ba2611e6a805c17112ddbb34167a1638d87d2433c3962d20e66564669f3424dd7be1265cbe03a1a7d6b1c5413ed43d80148d
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue