rename dracut-nohostonly and dracut-norescue rpm subpackages
dracut-nohostonly -> dracut-config-generic dracut-norescue -> dracut -> dracut-config-rescuemaster
parent
fbf717086e
commit
18e61d3d41
|
@ -15,4 +15,3 @@ systemdsystemconfdir=/etc/systemd/system
|
||||||
udevdir=/usr/lib/udev
|
udevdir=/usr/lib/udev
|
||||||
add_dracutmodules+=" systemd "
|
add_dracutmodules+=" systemd "
|
||||||
hostonly="yes"
|
hostonly="yes"
|
||||||
dracut_rescue_image="yes"
|
|
||||||
|
|
39
dracut.spec
39
dracut.spec
|
@ -76,6 +76,10 @@ Provides: mkinitrd = 2.6.1
|
||||||
Obsoletes: dracut-kernel < 005
|
Obsoletes: dracut-kernel < 005
|
||||||
Provides: dracut-kernel = %{version}-%{release}
|
Provides: dracut-kernel = %{version}-%{release}
|
||||||
|
|
||||||
|
Obsoletes: dracut <= 029
|
||||||
|
Obsoletes: dracut-norescue
|
||||||
|
Provides: dracut-horescue
|
||||||
|
|
||||||
Requires: bash >= 4
|
Requires: bash >= 4
|
||||||
Requires: coreutils
|
Requires: coreutils
|
||||||
Requires: cpio
|
Requires: cpio
|
||||||
|
@ -158,20 +162,23 @@ Requires: libcap
|
||||||
This package requires everything which is needed to build an
|
This package requires everything which is needed to build an
|
||||||
initramfs with dracut, which drops capabilities.
|
initramfs with dracut, which drops capabilities.
|
||||||
|
|
||||||
%package nohostonly
|
%package config-generic
|
||||||
Summary: dracut configuration to turn off hostonly image generation
|
Summary: dracut configuration to turn off hostonly image generation
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Obsoletes: dracut-nohostonly
|
||||||
|
Provides: dracut-nohostonly
|
||||||
|
|
||||||
%description nohostonly
|
%description config-generic
|
||||||
This package provides the configuration to turn off the host specific initramfs
|
This package provides the configuration to turn off the host specific initramfs
|
||||||
generation with dracut.
|
generation with dracut and generates a generic image by default.
|
||||||
|
|
||||||
%package norescue
|
%package config-rescue
|
||||||
Summary: dracut configuration to turn off rescue image generation
|
Summary: dracut configuration to turn on rescue image generation
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Obsoletes: dracut <= 029
|
||||||
|
|
||||||
%description norescue
|
%description config-rescue
|
||||||
This package provides the configuration to turn off the rescue initramfs
|
This package provides the configuration to turn on the rescue initramfs
|
||||||
generation with dracut.
|
generation with dracut.
|
||||||
|
|
||||||
%package tools
|
%package tools
|
||||||
|
@ -258,8 +265,8 @@ rm -f -- $RPM_BUILD_ROOT%{_bindir}/lsinitrd
|
||||||
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/kernel/postinst.d
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/kernel/postinst.d
|
||||||
install -m 0755 51-dracut-rescue-postinst.sh $RPM_BUILD_ROOT%{_sysconfdir}/kernel/postinst.d/51-dracut-rescue-postinst.sh
|
install -m 0755 51-dracut-rescue-postinst.sh $RPM_BUILD_ROOT%{_sysconfdir}/kernel/postinst.d/51-dracut-rescue-postinst.sh
|
||||||
|
|
||||||
echo 'hostonly="no"' > $RPM_BUILD_ROOT%{dracutlibdir}/dracut.conf.d/02-nohostonly.conf
|
echo 'hostonly="no"' > $RPM_BUILD_ROOT%{dracutlibdir}/dracut.conf.d/02-generic-image.conf
|
||||||
echo 'dracut_rescue_image="no"' > $RPM_BUILD_ROOT%{dracutlibdir}/dracut.conf.d/02-norescue.conf
|
echo 'dracut_rescue_image="yes"' > $RPM_BUILD_ROOT%{dracutlibdir}/dracut.conf.d/02-rescue.conf
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d
|
||||||
|
@ -384,8 +391,6 @@ rm -rf -- $RPM_BUILD_ROOT
|
||||||
%endif
|
%endif
|
||||||
%if 0%{?fedora} || 0%{?rhel} > 6
|
%if 0%{?fedora} || 0%{?rhel} > 6
|
||||||
%{_prefix}/lib/kernel/install.d/50-dracut.install
|
%{_prefix}/lib/kernel/install.d/50-dracut.install
|
||||||
%{_prefix}/lib/kernel/install.d/51-dracut-rescue.install
|
|
||||||
%{_sysconfdir}/kernel/postinst.d/51-dracut-rescue-postinst.sh
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files network
|
%files network
|
||||||
|
@ -426,12 +431,16 @@ rm -rf -- $RPM_BUILD_ROOT
|
||||||
%dir /var/lib/dracut
|
%dir /var/lib/dracut
|
||||||
%dir /var/lib/dracut/overlay
|
%dir /var/lib/dracut/overlay
|
||||||
|
|
||||||
%files nohostonly
|
%files config-generic
|
||||||
%defattr(-,root,root,0755)
|
%defattr(-,root,root,0755)
|
||||||
%{dracutlibdir}/dracut.conf.d/02-nohostonly.conf
|
%{dracutlibdir}/dracut.conf.d/02-generic-image.conf
|
||||||
|
|
||||||
%files norescue
|
%files config-rescue
|
||||||
%defattr(-,root,root,0755)
|
%defattr(-,root,root,0755)
|
||||||
%{dracutlibdir}/dracut.conf.d/02-norescue.conf
|
%{dracutlibdir}/dracut.conf.d/02-rescue.conf
|
||||||
|
%if 0%{?fedora} || 0%{?rhel} > 6
|
||||||
|
%{_prefix}/lib/kernel/install.d/51-dracut-rescue.install
|
||||||
|
%{_sysconfdir}/kernel/postinst.d/51-dracut-rescue-postinst.sh
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|
Loading…
Reference in New Issue