Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9ff1cd831a |
5 changed files with 139 additions and 672 deletions
30
.gitignore
vendored
30
.gitignore
vendored
|
|
@ -33,33 +33,3 @@
|
|||
/initscripts-9.78.tar.gz
|
||||
/initscripts-9.79.tar.gz
|
||||
/initscripts-9.80.tar.gz
|
||||
/initscripts-9.81.tar.gz
|
||||
/initscripts-9.82.tar.gz
|
||||
/initscripts-9.83.tar.gz
|
||||
/initscripts-10.00.tar.gz
|
||||
/initscripts-10.01.tar.gz
|
||||
/initscripts-10.02.tar.gz
|
||||
/initscripts-10.03.tar.gz
|
||||
/initscripts-10.04.tar.gz
|
||||
/initscripts-10.05.tar.gz
|
||||
/initscripts-10.06.tar.gz
|
||||
/initscripts-10.07.tar.gz
|
||||
/initscripts-10.08.tar.gz
|
||||
/initscripts-10.09.tar.gz
|
||||
/initscripts-10.10.tar.gz
|
||||
/initscripts-10.11.tar.gz
|
||||
/initscripts-10.12.tar.gz
|
||||
/initscripts-10.13.tar.gz
|
||||
/initscripts-10.14.tar.gz
|
||||
/initscripts-10.15.tar.gz
|
||||
/initscripts-10.16.tar.gz
|
||||
/initscripts-10.17.tar.gz
|
||||
/initscripts-10.18.tar.gz
|
||||
/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
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
# Additional information
|
||||
|
||||
Check upstream's [README.md](https://github.com/fedora-sysv/initscripts/blob/master/README.md) for more info.
|
||||
746
initscripts.spec
746
initscripts.spec
|
|
@ -1,642 +1,164 @@
|
|||
# === GLOBAL MACROS ===========================================================
|
||||
|
||||
# According to Fedora Package Guidelines, it is advised that packages that can
|
||||
# process untrusted input are build with position-idenpendent code (PIC).
|
||||
#
|
||||
# Koji should override the compilation flags and add the -fPIC or -fPIE flags by
|
||||
# default. This is here just in case this wouldn't happen for some reason.
|
||||
# For more info: https://fedoraproject.org/wiki/Packaging:Guidelines#PIE
|
||||
%global _hardened_build 1
|
||||
|
||||
%global shared_requirements \
|
||||
Requires: bash \
|
||||
Requires: filesystem >= 3 \
|
||||
Requires: coreutils \
|
||||
Requires: gawk \
|
||||
|
||||
# =============================================================================
|
||||
|
||||
Name: initscripts
|
||||
Summary: Basic support for legacy System V init scripts
|
||||
Version: 10.27
|
||||
Release: 1%{?dist}
|
||||
|
||||
License: GPL-2.0-only
|
||||
|
||||
URL: https://github.com/fedora-sysv/initscripts
|
||||
Source: https://github.com/fedora-sysv/initscripts/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
|
||||
%shared_requirements
|
||||
|
||||
Requires: findutils
|
||||
Requires: grep
|
||||
Requires: procps-ng
|
||||
Requires: setup
|
||||
Requires: systemd
|
||||
Requires: util-linux
|
||||
Requires: chkconfig
|
||||
Requires: initscripts-service
|
||||
Requires: initscripts-rename-device
|
||||
|
||||
Requires(pre): shadow-utils
|
||||
Requires(post): coreutils
|
||||
|
||||
BuildRequires: filesystem >= 3
|
||||
BuildRequires: gcc
|
||||
BuildRequires: git
|
||||
BuildRequires: gettext
|
||||
BuildRequires: glib2-devel
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: popt-devel
|
||||
BuildRequires: setup
|
||||
BuildRequires: make
|
||||
|
||||
Summary: Scripts to bring up network interfaces and legacy utilities
|
||||
Name: initscripts
|
||||
Version: 9.80
|
||||
License: GPLv2
|
||||
Group: System Environment/Base
|
||||
Release: 1%{?dist}
|
||||
URL: https://github.com/fedora-sysv/initscripts
|
||||
Source: https://github.com/fedora-sysv/initscripts/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
Requires: /bin/awk, sed, coreutils
|
||||
Requires: grep
|
||||
Requires: module-init-tools
|
||||
Requires: util-linux >= 2.16
|
||||
Requires: bash >= 3.0
|
||||
Requires: procps-ng >= 3.3.8-16
|
||||
Requires: ipcalc
|
||||
Conflicts: systemd < 216-3
|
||||
Conflicts: lvm2 < 2.02.98-3
|
||||
Conflicts: dmraid < 1.0.0.rc16-18
|
||||
Conflicts: policycoreutils < 2.5-6
|
||||
Requires: systemd
|
||||
Requires: iproute, /sbin/arping, findutils
|
||||
Requires: cpio
|
||||
Requires: hostname
|
||||
Conflicts: ipsec-tools < 0.8.0-2
|
||||
Conflicts: NetworkManager < 0.9.9.0-37.git20140131.el7
|
||||
Conflicts: ppp < 2.4.6-4
|
||||
Requires(pre): /usr/sbin/groupadd
|
||||
Requires(post): /sbin/chkconfig, coreutils
|
||||
Requires(preun): /sbin/chkconfig
|
||||
%{?systemd_requires}
|
||||
BuildRequires: systemd
|
||||
|
||||
Obsoletes: %{name} < 10.16-1
|
||||
Obsoletes: network-scripts < 10.25-1
|
||||
|
||||
# === PATCHES =================================================================
|
||||
|
||||
# NOTE: 'autosetup' macro (below) uses 'git' for applying the patches:
|
||||
# ->> All the patches should be provided in 'git format-patch' format.
|
||||
# ->> Auxiliary repository will be created during 'fedpkg prep', you
|
||||
# can see all the applied patches there via 'git log'.
|
||||
|
||||
# Upstream patches -- official upstream patches released by upstream since the
|
||||
# ---------------- last rebase that are necessary for any reason:
|
||||
#Patch000: example000.patch
|
||||
|
||||
|
||||
# Downstream patches -- these should be always included when doing rebase:
|
||||
# ------------------
|
||||
#Patch100: example100.patch
|
||||
|
||||
|
||||
# Downstream patches for RHEL -- patches that we keep only in RHEL for various
|
||||
# --------------------------- reasons, but are not enabled in Fedora:
|
||||
%if %{defined rhel} || %{defined centos}
|
||||
#Patch200: example200.patch
|
||||
%endif
|
||||
|
||||
|
||||
# Patches to be removed -- deprecated functionality which shall be removed at
|
||||
# --------------------- some point in the future:
|
||||
|
||||
BuildRequires: gcc glib2-devel popt-devel gettext pkgconfig systemd
|
||||
Provides: /sbin/service
|
||||
|
||||
%description
|
||||
This package provides basic support for legacy System V init scripts, and some
|
||||
other legacy tools & utilities.
|
||||
|
||||
# === SUBPACKAGES =============================================================
|
||||
|
||||
%package -n initscripts-rename-device
|
||||
Summary: Udev helper utility that provides network interface naming
|
||||
|
||||
%shared_requirements
|
||||
|
||||
%description -n initscripts-rename-device
|
||||
Udev helper utility that provides network interface naming
|
||||
|
||||
# ---------------
|
||||
|
||||
%package -n initscripts-service
|
||||
Summary: Support for service command
|
||||
BuildArch: noarch
|
||||
|
||||
%shared_requirements
|
||||
|
||||
Requires: systemd
|
||||
|
||||
Provides: /sbin/service
|
||||
|
||||
%description -n initscripts-service
|
||||
This package provides service command.
|
||||
|
||||
# ---------------
|
||||
|
||||
%package -n netconsole-service
|
||||
Summary: Service for initializing of network console logging
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
BuildArch: noarch
|
||||
|
||||
%shared_requirements
|
||||
|
||||
Requires: glibc-common
|
||||
Requires: iproute
|
||||
Requires: iputils
|
||||
Requires: kmod
|
||||
Requires: sed
|
||||
Requires: util-linux
|
||||
|
||||
Obsoletes: %{name} < 9.82-2
|
||||
|
||||
%description -n netconsole-service
|
||||
This packages provides a 'netconsole' service for loading of netconsole kernel
|
||||
module with the configured parameters. The netconsole kernel module itself then
|
||||
allows logging of kernel messages over the network.
|
||||
|
||||
# ---------------
|
||||
|
||||
%package -n readonly-root
|
||||
Summary: Service for configuring read-only root support
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
BuildArch: noarch
|
||||
|
||||
%shared_requirements
|
||||
|
||||
Requires: cpio
|
||||
Requires: findutils
|
||||
Requires: hostname
|
||||
Requires: iproute
|
||||
Requires: ipcalc
|
||||
Requires: util-linux
|
||||
|
||||
Obsoletes: %{name} < 9.82-2
|
||||
|
||||
%description -n readonly-root
|
||||
This package provides script & configuration file for setting up read-only root
|
||||
support. Additional configuration is required after installation.
|
||||
|
||||
Please note that readonly-root package is considered deprecated with limited support.
|
||||
Please use systemd-volatile-root functionality instead, if possible.
|
||||
|
||||
# === BUILD INSTRUCTIONS ======================================================
|
||||
This package contains the script that activates and deactivates most
|
||||
network interfaces, some utilities, and other legacy files.
|
||||
|
||||
%prep
|
||||
%autosetup -S git
|
||||
|
||||
# ---------------
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%make_build PYTHON=%{__python3}
|
||||
|
||||
# ---------------
|
||||
make
|
||||
|
||||
%install
|
||||
%make_install NO_NETWORK_SCRIPTS=true
|
||||
make ROOT=%{buildroot} SUPERUSER=`id -un` SUPERGROUP=`id -gn` mandir=%{_mandir} install
|
||||
|
||||
# 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}/
|
||||
%ifnarch s390 s390x
|
||||
rm -f \
|
||||
%{buildroot}%{_sysconfdir}/sysconfig/network-scripts/ifup-ctc \
|
||||
%endif
|
||||
|
||||
# =============================================================================
|
||||
rm -f %{buildroot}%{_sysconfdir}/rc.d/rc.local %{buildroot}%{_sysconfdir}/rc.local
|
||||
touch %{buildroot}%{_sysconfdir}/rc.d/rc.local
|
||||
chmod 755 %{buildroot}%{_sysconfdir}/rc.d/rc.local
|
||||
|
||||
%post
|
||||
%systemd_post import-state.service loadmodules.service
|
||||
%systemd_post fedora-import-state.service fedora-loadmodules.service fedora-readonly.service
|
||||
|
||||
/usr/sbin/chkconfig --add network > /dev/null 2>&1 || :
|
||||
/usr/sbin/chkconfig --add netconsole > /dev/null 2>&1 || :
|
||||
|
||||
%preun
|
||||
%systemd_preun import-state.service loadmodules.service
|
||||
%systemd_preun fedora-import-state.service fedora-loadmodules.service fedora-readonly.service
|
||||
|
||||
if [ $1 = 0 ]; then
|
||||
/usr/sbin/chkconfig --del network > /dev/null 2>&1 || :
|
||||
/usr/sbin/chkconfig --del netconsole > /dev/null 2>&1 || :
|
||||
fi
|
||||
|
||||
%postun
|
||||
%systemd_postun import-state.service loadmodules.service
|
||||
%systemd_postun fedora-import-state.service fedora-loadmodules.service fedora-readonly.service
|
||||
|
||||
# ---------------
|
||||
|
||||
%post -n netconsole-service
|
||||
%systemd_post netconsole.service
|
||||
|
||||
%preun -n netconsole-service
|
||||
%systemd_preun netconsole.service
|
||||
|
||||
%postun -n netconsole-service
|
||||
%systemd_postun netconsole.service
|
||||
|
||||
# ---------------
|
||||
|
||||
%post -n readonly-root
|
||||
%systemd_post readonly-root.service
|
||||
|
||||
%preun -n readonly-root
|
||||
%systemd_preun readonly-root.service
|
||||
|
||||
%postun -n readonly-root
|
||||
%systemd_postun readonly-root.service
|
||||
|
||||
# === PACKAGING INSTRUCTIONS ==================================================
|
||||
# This should be removed in Rawhide for Fedora 29:
|
||||
%triggerun -- initscripts < 9.78
|
||||
if [ $1 -gt 1 ]; then
|
||||
systemctl enable fedora-import-state.service fedora-readonly.service &> /dev/null || :
|
||||
echo -e "\nUPGRADE: Automatically re-enabling default systemd units: fedora-import-state.service fedora-readonly.service\n" || :
|
||||
fi
|
||||
|
||||
%files -f %{name}.lang
|
||||
%license COPYING
|
||||
%doc doc/sysconfig.txt
|
||||
|
||||
# NOTE: /etc/profile.d/ is owned by setup package.
|
||||
# /etc/sysconfig/ is owned by filesystem package.
|
||||
%dir %{_sysconfdir}/rc.d
|
||||
%dir %{_sysconfdir}/rc.d/init.d
|
||||
%dir %{_sysconfdir}/rc.d/rc[0-6].d
|
||||
%defattr(-,root,root)
|
||||
%dir %{_sysconfdir}/sysconfig/network-scripts
|
||||
%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/adjtime
|
||||
%config(noreplace) %{_sysconfdir}/sysconfig/netconsole
|
||||
%config(noreplace) %{_sysconfdir}/sysconfig/readonly-root
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifdown
|
||||
%{_sbindir}/ifdown
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifdown-post
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup
|
||||
%{_sbindir}/ifup
|
||||
%dir %{_sysconfdir}/sysconfig/console
|
||||
%dir %{_sysconfdir}/sysconfig/modules
|
||||
%dir %{_libexecdir}/%{name}
|
||||
%dir %{_libexecdir}/%{name}/legacy-actions
|
||||
|
||||
# ---------------
|
||||
|
||||
%{_sysconfdir}/rc.d/init.d/functions
|
||||
|
||||
# RC symlinks:
|
||||
%{_sysconfdir}/rc[0-6].d
|
||||
|
||||
%{_sysconfdir}/init.d
|
||||
|
||||
# ---------------
|
||||
|
||||
%{_bindir}/usleep
|
||||
%{_sbindir}/consoletype
|
||||
%{_sbindir}/genhostid
|
||||
|
||||
%{_libexecdir}/import-state
|
||||
%{_libexecdir}/loadmodules
|
||||
|
||||
%{_prefix}/lib/systemd/system/import-state.service
|
||||
%{_prefix}/lib/systemd/system/loadmodules.service
|
||||
|
||||
%{_mandir}/man1/*
|
||||
|
||||
# =============================================================================
|
||||
|
||||
%files -n initscripts-rename-device
|
||||
%license COPYING
|
||||
|
||||
%{_prefix}/lib/udev/rename_device
|
||||
|
||||
%{_udevrulesdir}/*
|
||||
|
||||
# ---------------
|
||||
|
||||
%files -n initscripts-service
|
||||
%license COPYING
|
||||
|
||||
%dir %{_libexecdir}/%{name}
|
||||
%dir %{_libexecdir}/%{name}/legacy-actions
|
||||
|
||||
%{_sbindir}/service
|
||||
|
||||
%{_mandir}/man8/service.*
|
||||
|
||||
# ---------------
|
||||
|
||||
%files -n netconsole-service
|
||||
%license COPYING
|
||||
%config(noreplace) %{_sysconfdir}/sysconfig/netconsole
|
||||
|
||||
%{_libexecdir}/netconsole
|
||||
%{_prefix}/lib/systemd/system/netconsole.service
|
||||
|
||||
# ---------------
|
||||
|
||||
%files -n readonly-root
|
||||
%license COPYING
|
||||
|
||||
%dir %{_sharedstatedir}/stateless
|
||||
%dir %{_sharedstatedir}/stateless/state
|
||||
%dir %{_sharedstatedir}/stateless/writable
|
||||
|
||||
%{_sysconfdir}/sysconfig/network-scripts/network-functions
|
||||
%{_sysconfdir}/sysconfig/network-scripts/network-functions-ipv6
|
||||
%{_sysconfdir}/sysconfig/network-scripts/init.ipv6-global
|
||||
%config(noreplace) %{_sysconfdir}/sysconfig/network-scripts/ifcfg-lo
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-post
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-routes
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifdown-routes
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-plip
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-plusb
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-bnep
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifdown-bnep
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-eth
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifdown-eth
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-ipv6
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifdown-ipv6
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-sit
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifdown-sit
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-tunnel
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifdown-tunnel
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-aliases
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-ippp
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifdown-ippp
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-wireless
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-isdn
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifdown-isdn
|
||||
%ifarch s390 s390x
|
||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-ctc
|
||||
%endif
|
||||
%config(noreplace) %{_sysconfdir}/networks
|
||||
%config(noreplace) %{_sysconfdir}/rwtab
|
||||
%config(noreplace) %{_sysconfdir}/statetab
|
||||
%config(noreplace) %{_sysconfdir}/sysconfig/readonly-root
|
||||
|
||||
%{_libexecdir}/readonly-root
|
||||
%{_prefix}/lib/systemd/system/readonly-root.service
|
||||
|
||||
# =============================================================================
|
||||
%dir %{_sysconfdir}/rwtab.d
|
||||
%dir %{_sysconfdir}/statetab.d
|
||||
%{_prefix}/lib/systemd/fedora-*
|
||||
%{_prefix}/lib/systemd/system/*
|
||||
%dir %{_sysconfdir}/rc.d
|
||||
%dir %{_sysconfdir}/rc.d/rc[0-9].d
|
||||
%{_sysconfdir}/rc[0-9].d
|
||||
%dir %{_sysconfdir}/rc.d/init.d
|
||||
%{_sysconfdir}/rc.d/init.d/*
|
||||
%ghost %verify(not md5 size mtime) %config(noreplace,missingok) %{_sysconfdir}/rc.d/rc.local
|
||||
%{_sysconfdir}/profile.d/*
|
||||
%{_sbindir}/sys-unconfig
|
||||
%{_bindir}/usleep
|
||||
%attr(4755,root,root) %{_sbindir}/usernetctl
|
||||
%{_sbindir}/consoletype
|
||||
%{_sbindir}/genhostid
|
||||
%{_sbindir}/sushell
|
||||
%attr(2755,root,root) %{_sbindir}/netreport
|
||||
%{_udevrulesdir}/*
|
||||
%{_prefix}/lib/udev/rename_device
|
||||
%{_sbindir}/service
|
||||
%{_mandir}/man*/*
|
||||
%dir %attr(775,root,root) /run/netreport
|
||||
%dir %{_sysconfdir}/NetworkManager
|
||||
%dir %{_sysconfdir}/NetworkManager/dispatcher.d
|
||||
%{_sysconfdir}/NetworkManager/dispatcher.d/00-netreport
|
||||
%doc sysconfig.txt sysvinitfiles static-routes-ipv6 ipv6-tunnel.howto ipv6-6to4.howto changes.ipv6
|
||||
%doc examples
|
||||
%{!?_licensedir:%global license %%doc}
|
||||
%license COPYING
|
||||
%{_sharedstatedir}/stateless
|
||||
%{_tmpfilesdir}/initscripts.conf
|
||||
%dir %{_libexecdir}/initscripts
|
||||
%dir %{_libexecdir}/initscripts/legacy-actions
|
||||
|
||||
%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
|
||||
- ifup-routes: print warning when ADDRESS0 entry is missing
|
||||
- fedora: don't build network-scripts rpm in f40+
|
||||
|
||||
* Tue Jan 30 2024 Jan Macku <jamacku@redhat.com> - 10.20-1
|
||||
- Translated using Weblate (Georgian)
|
||||
- Add -r to while read as per shellcheck
|
||||
- Fix splitting spaces in paths from statetab files
|
||||
- build(deps): bump actions/upload-artifact from 3 to 4
|
||||
- build(deps): bump github/codeql-action from 2 to 3
|
||||
- Translated using Weblate (Georgian)
|
||||
- Translated using Weblate (Czech)
|
||||
- Translated using Weblate (Punjabi)
|
||||
- Translated using Weblate (Portuguese (Brazil))
|
||||
- build(deps): bump redhat-plumbers-in-action/differential-shellcheck
|
||||
- build(deps): bump actions/checkout from 3 to 4
|
||||
- Translated using Weblate (Hungarian)
|
||||
- Translated using Weblate (Finnish)
|
||||
- Translated using Weblate (Georgian)
|
||||
- Translated using Weblate (Chinese (Simplified) (zh_CN))
|
||||
- Translated using Weblate (English (United Kingdom))
|
||||
- Translated using Weblate (Korean)
|
||||
- Translated using Weblate (Ukrainian)
|
||||
- Translated using Weblate (Swedish)
|
||||
- Translated using Weblate (Polish)
|
||||
- Update translation files
|
||||
- Translated using Weblate (Korean)
|
||||
|
||||
* Fri May 05 2023 Jan Macku <jamacku@redhat.com> - 10.19-1
|
||||
- ci: update Packit configuration
|
||||
- spec: add missing changelog entry
|
||||
- Revert "releng: Enable Packit to handle Fedora updates"
|
||||
- Revert "releng: Convert to rpmautospec"
|
||||
- doc: update translations
|
||||
- spec: remove changelog
|
||||
|
||||
* Thu Mar 23 2023 Jan Macku <jamacku@redhat.com> - 10.18-1
|
||||
- Translated using Weblate (English (United Kingdom))
|
||||
- migrate to SPDX license
|
||||
- ci(Mergify): configuration update
|
||||
- Translated using Weblate (German)
|
||||
- Translated using Weblate (English (United Kingdom))
|
||||
- doc: update badges
|
||||
- ci(lint): Add Differential PyLint GitHub Action
|
||||
- ci(lint): Add permission `security-events: write`
|
||||
- ci: Update Differential ShellCheck to `@v4`
|
||||
- doc: fix markdown warnings and update badge
|
||||
- ci: Setup CodeQL to replace deprecated LGTM
|
||||
- releng: Enable Packit to handle Fedora updates
|
||||
- releng: Convert to rpmautospec
|
||||
- build(deps): bump redhat-plumbers-in-action/differential-shellcheck
|
||||
|
||||
* Wed Aug 24 2022 Jan Macku <jamacku@redhat.com> - 10.17-1
|
||||
- service: Exit when `/etc/init.d` is missing
|
||||
- ci: Update workflows to run on main branch
|
||||
- ci: remove differential-shellcheck configs
|
||||
- doc: Use main branch in links
|
||||
- dependabot: Monthly updates
|
||||
- ci(Mergify): configuration update
|
||||
- Translated using Weblate (Georgian)
|
||||
- Translated using Weblate (Georgian)
|
||||
- ci: Update `packit.yml`
|
||||
- ci: Update Github workflows & add Dependabot
|
||||
- Translated using Weblate (Estonian)
|
||||
- Translated using Weblate (Georgian)
|
||||
- Translated using Weblate (Georgian)
|
||||
- Translated using Weblate (Czech)
|
||||
- Drop unnecessary obsoletes
|
||||
|
||||
* Wed Feb 23 2022 Adam Williamson <awilliam@redhat.com> - 10.16-2
|
||||
- Drop unnecessary obsoletes
|
||||
|
||||
* Wed Feb 23 2022 Jan Macku <jamacku@redhat.com> - 10.16-1
|
||||
- spec: Move rename_device to subpackage `initscripts-rename-device`
|
||||
|
||||
* Tue Feb 15 2022 Jan Macku <jamacku@redhat.com> - 10.15-1
|
||||
- spec: network-scripts needs to depend on dbus-tools for NetworkManager detection
|
||||
- packit: Run copr builds on release as well
|
||||
- ci: Update `.packit.yml` to run on `c8s` `c9s` and `rawhide`
|
||||
- Translated using Weblate (Finnish)
|
||||
- ci: Use Differential ShellCheck action
|
||||
- ci(Mergify): configuration update
|
||||
|
||||
* Mon Jan 24 2022 Jan Macku <jamacku@redhat.com> - 10.14-1
|
||||
- ifup-routes: Revert quotes
|
||||
- ifup-routes: Use `ip replace` only on type `route`
|
||||
- ci(Mergify): configuration update
|
||||
- ci: remove testing branch from `shellcheck_test.yml`
|
||||
|
||||
* Thu Jan 13 2022 Jan Macku <jamacku@redhat.com> - 10.13-1
|
||||
- ifup-routes: Log when using `ip $type replace`
|
||||
- ifup-routes: Use `ip route repace` to avoid race
|
||||
- Translated using Weblate (German)
|
||||
- Add LGTM badges to README
|
||||
- ci: set default merge method to rebase
|
||||
- ci: disable comments under opened PR in order to fix CI
|
||||
- network scripts: do not use c-style for-loop
|
||||
- network scripts: replace "<<<" with pipe
|
||||
- rc.d/functions: do not use "+=" to concatenate string
|
||||
- ci: Use default github-token (#395)
|
||||
- ci(Mergify): configuration update (#394)
|
||||
- ci: Output shellcheck results using PR comments (#393)
|
||||
- ci: Update path to csdiff repository (#391)
|
||||
- spec: Fix issue with $NEXT_VERSION (#390)
|
||||
- Translated using Weblate (Indonesian)
|
||||
- Translated using Weblate (Spanish)
|
||||
- Translated using Weblate (Czech)
|
||||
|
||||
* Fri Sep 03 2021 Jan Macku <jamacku@redhat.com> - 10.12-1
|
||||
- spec: Update relation between initscripts and initscripts-service (#386)
|
||||
|
||||
* Fri Aug 27 2021 Jan Macku <jamacku@redhat.com> - 10.11-1
|
||||
- specfile: Update obsoletes to allow upgrades (#385)
|
||||
|
||||
* Thu Aug 26 2021 Jan Macku <jamacku@redhat.com> - 10.10-1
|
||||
- Translated using Weblate (Friulian) (#381)
|
||||
- Translations update from Weblate (#378)
|
||||
- added veth support
|
||||
- ifup-eth: add a new PERSISTENT_DHCLIENT_IPV6 option for IPv6 dhclient daemon
|
||||
- ifdown removes veth pair if both peers are down
|
||||
- rename_device: also support dracut-style kernel cmdline configuration
|
||||
- spec: Mark network-scripts as deprecated
|
||||
- spec: Initscripts now requires chkconfig (#374)
|
||||
- Translations update from Weblate (#371)
|
||||
- spec: Move service script into subpackage
|
||||
- ci: Onboard initscripts to Packit
|
||||
- ci: Migrate from Travis to GH Actions
|
||||
|
||||
* Mon Feb 15 2021 Jan Macku <jamacku@redhat.com> - 10.09-1
|
||||
- doc: Document ARPING_WAIT and ARPING_UPDATE_WAIT
|
||||
- network scripts: Avoid infinite loop of arping
|
||||
|
||||
* Thu Feb 4 2021 Jan Macku <jamacku@redhat.com> - 10.08-1
|
||||
- network: fix condition in set_link_up()
|
||||
- spec: sync with Fedora
|
||||
|
||||
* Fri Jan 22 2021 Jan Macku <jamacku@redhat.com> - 10.07-1
|
||||
- doc: Fix "Duplicated string found in the file."
|
||||
- doc: Documents RES_OPTIONS option
|
||||
- doc: Documents ifcfg option LINKSTATUS
|
||||
- ci: use up to date keywords and fix some warnings
|
||||
- network: fix set_link_up()
|
||||
- network: add option to keep the link down
|
||||
- Rework of shell ci
|
||||
- Translations update from Weblate
|
||||
|
||||
* Fri Nov 13 2020 Jan Macku <jamacku@redhat.com> - 10.06-1
|
||||
- service: catch unsupported action keywords
|
||||
- makefile: Use rpmdev-bumpspec's legacy date option
|
||||
|
||||
* Fri Nov 06 2020 Jan Macku <jamacku@redhat.com> - 10.05-1
|
||||
- service: Prevent variables from globbing
|
||||
- init.d/functions: Make usage msgs more clear
|
||||
- network-scripts: Use net_log() instead of logger
|
||||
- Allow updating rfkill switch status while in readonly root mode
|
||||
- Add info into specfile about readonly-root deprecation
|
||||
- Allow updating mlocate.db while in readonly root mode
|
||||
- rc.d/functions: replace grep's --quiet with -q
|
||||
- Add warning to warn user when ETHTOOL_OPTS is set and ethtool binary is missing - Olav Vitters
|
||||
- Fix spacing in Makefile
|
||||
- Add optional 'dev' keyword
|
||||
|
||||
* Tue Jul 14 2020 Jan Macku <jamacku@redhat.com> - 10.04-1
|
||||
- Maintain permisision to set umask
|
||||
- rwtab: Add support for chrony
|
||||
- Correct spelling, IP, …
|
||||
- Fix spelling, for more info
|
||||
- Fix spelling of SELinux
|
||||
- Translations update from Weblate
|
||||
|
||||
* Tue Mar 24 2020 Jan Macku <jamacku@redhat.com> - 10.03-1
|
||||
- Replace grep -EL with subshell since -L changed behaviour
|
||||
- Wait for scope link addresses as well as for scope global addresses
|
||||
- Remove deprecated option -m of pidof
|
||||
- Use function is_true for testing true conditions
|
||||
- Adding new travis job for testing shell-scripts
|
||||
- Remove zanata conf
|
||||
- pull latest translations
|
||||
- Update of translations and remove files with no translations
|
||||
- Fix service network stop cmd
|
||||
- Change spacing of service file to folow spacing of project
|
||||
- network-function: bridges are created by ifup-eth
|
||||
- Initscripts no longer care about rc.local
|
||||
- Repalace hardcoded tests for yes and no with testing functions
|
||||
- ifup-eth: Fix bridge setting stp option
|
||||
- Fix bug in service(8)
|
||||
- ifup-eth: Check that device name is set
|
||||
- Fix missing python3 during build phase
|
||||
- rc.d/functions: fix escape sequence being output under systemd service units
|
||||
- Add ip6gre tunnel option
|
||||
- ifup/ifdown: print DEPRECATION_WARNING_ISSUED waring info after source_config
|
||||
|
||||
* Fri Jun 28 2019 Jan Macku <jamacku@redhat.com> - 10.02-1
|
||||
- network: don't fail with IFDOWN_ON_SHUTDOWN
|
||||
- rc.d/functions: remove support cgroups
|
||||
- Create symlink (/etc/init.d) to /etc/rc.d/init.d
|
||||
- Add option to wait until target is reachable
|
||||
- ifup-eth: apply PERSISTENT_DHCLIENT to IPv6 dhclient daemon
|
||||
- ifup-post: fix incorrect condition for RESOLV_MODS
|
||||
- make tag: updated message
|
||||
- make release-commit: do not create tag automatically
|
||||
|
||||
* Mon Aug 06 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 10.01-1
|
||||
- network/ifup/ifdown: deprecations warnings redirected to stderr
|
||||
- ifup-eth: use 'bc' instead of 'expr' when computing $forward_delay
|
||||
- network/ifup/ifdown: deprecation warnings for 'network-scripts' added
|
||||
- network: parsing of /proc/mounts returned
|
||||
|
||||
* Thu Jun 21 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 10.00-1
|
||||
- Move the /etc/rwtab.d & /etc/statetab.d folders to 'filesystem'
|
||||
- specfile: fix failing build because of incorrect use of %{_isa}
|
||||
|
||||
* Thu Jun 14 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.83-1
|
||||
- network-scripts: Add previously dropped error checking
|
||||
- network-scripts: Replace brctl with ip-link
|
||||
- Makefile: new release-commit rule added
|
||||
- src/rename_device.c: GCC warnings about unused return value suppressed
|
||||
- src/usernetctl.c: GCC warnings about unused return value suppressed
|
||||
- Makefile: allow sub-makefiles to run in parallel
|
||||
- specfile: netconsole service moved to /usr/libexec
|
||||
- specfile: services from /usr/lib/systemd moved to /usr/libexec
|
||||
- specfile: summary & description updated
|
||||
- specfile: no longer needed conflicts dropped
|
||||
- specfile: requirements cleanup
|
||||
- specfile: obsoletes on previous version of initscripts package added
|
||||
- specfile: network-scripts subpackage created
|
||||
- specfile: readonly-root subpackage created
|
||||
- specfile: netconsole-service subpackage created
|
||||
- README.md: Travis CI build icon added
|
||||
- .travis.yml: check the 'make install' proceeds as well
|
||||
- .travis.yml: initial commit
|
||||
- README.md: bug reporting described
|
||||
- README.dm: future of initscripts described
|
||||
- README.md: description added
|
||||
- README.md: references to old git branches added
|
||||
- README.md: initial commit
|
||||
- network-scripts: setting of firewall ZONE fixed
|
||||
- ifdown-post: artifact whitespace removed from the DBus call
|
||||
- l10n: drop .tx directory
|
||||
- l10n: add zanata.xml
|
||||
|
||||
* Mon Jun 04 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.82-1
|
||||
- Makefile: make the creation of symlinks relative to path again
|
||||
- specfile: trailing file of netreport removed
|
||||
|
||||
* Thu May 31 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.81-1
|
||||
- src/consoletype.c: deprecation warning added
|
||||
- src/genhostid.c: deprecation warning added
|
||||
- src/genhostid.c: fixed to not override /etc/hostid if it already exists
|
||||
- src/usleep.c: GCC warnings fixed
|
||||
- nis-domainname.service removed
|
||||
- fedora-* services renamed to more general names
|
||||
- specfile: missing fedora-domainname.service returned in systemd macros
|
||||
- COPYING updated to latest GNU version (GPLv2+)
|
||||
- network-scripts: control 'network' service with alternatives as well
|
||||
- netreport functionality dropped
|
||||
- networks moved into 'setup' package
|
||||
- lang.{sh,csh} moved into setup package
|
||||
- lang.{sh,csh} cleanup before moving to 'setup' package
|
||||
- src/sushell moved into 'policycoreutils' package
|
||||
- src/shvar.* removed
|
||||
- po/xgettext_sh removed
|
||||
- sys-unconfig removed
|
||||
- Outdated files from doc/ folder removed
|
||||
- make archive: ChangeLog generating removed
|
||||
- network-scripts: ifup & ifdown -- use alternatives system
|
||||
- adjtime moved into 'util-linux' package
|
||||
- specfile: simplified & updated to new repository layout
|
||||
- .gitignore files updated to new repository layout
|
||||
- Makefile simplified & updated to new repository layout
|
||||
- po/Makefile simplified & updated to new repository layout
|
||||
- src/Makefile simplified & updated to new repository layout
|
||||
- Repository scheme updated to new layout
|
||||
- fedora-readonly: command substitution warning fixed (null-byte input)
|
||||
|
||||
* Fri May 25 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.80-1
|
||||
- sysconfig/readonly-root: Clarify the usage of readonly-root
|
||||
- use proper shebang where appropriate
|
||||
|
|
@ -876,7 +398,7 @@ ng
|
|||
* Tue Jan 14 2014 Lukáš Nykrýn <lnykryn@redhat.com> 9.51-1
|
||||
- readonly-root: bind-mount only necessary subset of entries in rwtab
|
||||
- readonly-root: Add /var/log/audit/audit.log to rwtab
|
||||
- readonly-root: restore SELinux context after bind mount
|
||||
- readonly-root: restore selinux context after bind mount
|
||||
- rename_device: remove comments and trailing whitespaces
|
||||
- service: suggest using systemctl if unknown action is used
|
||||
- ifup-eth: fix typo in error message
|
||||
|
|
@ -959,7 +481,7 @@ ng
|
|||
- check an IP address for existence in ifup-alias (#852005)
|
||||
- sync FSF address with GPL 2 text.
|
||||
- fix rpmlint's spaces vs tabs warning.
|
||||
- fix bogus %changelog dates.
|
||||
- fix bogus %%changelog dates.
|
||||
- build with $RPM_LD_FLAGS.
|
||||
- use -sf, not -s. (#901827)
|
||||
- add /usr/libexec/initscripts to file list (#894475)
|
||||
|
|
|
|||
30
rebase.sh
30
rebase.sh
|
|
@ -1,29 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
# We always do a rebase to new upstream's tarball for Fedora Rawhide.
|
||||
#
|
||||
# For non-Rawhide Fedora releases, we can sometimes backport specific patches,
|
||||
# if the rebase is not possible.
|
||||
#
|
||||
# This scripts automates this process.
|
||||
|
||||
# Since we are operating in a dist-git repository where we can't fix things with
|
||||
# --force-push if something goes wrong, we need to be extra careful and exit
|
||||
# immediately if something fails.
|
||||
set -e
|
||||
|
||||
curl https://raw.githubusercontent.com/fedora-sysv/initscripts/master/initscripts.spec -o initscripts.spec || exit 1
|
||||
spectool -g initscripts.spec
|
||||
|
||||
# Make a local scratch build in mock first. If it fails, do not upload new tarball!
|
||||
# srpm_file="$(basename $(fedpkg srpm | grep -i "wrote" | cut -d ':' -f 2))"
|
||||
# arch="$(uname -p)"
|
||||
|
||||
# mock -r "fedora-rawhide-${arch}" "${srpm_file}" || exit 2
|
||||
|
||||
# Scratch build passed, the build should pass in Koji as well. Let's proceed:
|
||||
fedpkg new-sources "$(basename $(spectool -S -l initscripts.spec | gawk '{print $2;}'))" || exit 3
|
||||
curl https://raw.githubusercontent.com/fedora-sysv/initscripts/master/initscripts.spec -o initscripts.spec
|
||||
git add initscripts.spec
|
||||
git commit -m "$(grep Version initscripts.spec | gawk '{print $2;}')"
|
||||
|
||||
git show
|
||||
spectool -g initscripts.spec
|
||||
fedpkg new-sources $(basename $(spectool -S -l initscripts.spec | awk '{print $2;}'))
|
||||
git commit -m $(grep Version initscripts.spec | awk '{print $2;}')
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (initscripts-10.27.tar.gz) = 951f88158eaf7409f7d65c9875c9ba2611e6a805c17112ddbb34167a1638d87d2433c3962d20e66564669f3424dd7be1265cbe03a1a7d6b1c5413ed43d80148d
|
||||
SHA512 (initscripts-9.80.tar.gz) = 68405a89840bfe339ff5810216c94ab83af7bb189cf5d75c90854e599147e0b6c2c15b695a5498407fb5b972c451d5b4c8f73bd61e5f23cfb887e889ee512f97
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue