From Fedora Project Wiki
(chkconfig?) |
Stardust85 (talk | contribs) (why postun?) |
||
Line 1: | Line 1: | ||
Is there a particular reason to require %{_sbindir}/update-alternatives instead if chkconfig? I thought generally we preferred the latter? [[User:Petersen|Petersen]] 10:18, 14 November 2011 (UTC) | Is there a particular reason to require %{_sbindir}/update-alternatives instead if chkconfig? I thought generally we preferred the latter? [[User:Petersen|Petersen]] 10:18, 14 November 2011 (UTC) | ||
What is the purpose of %postun in the sendmail example? I mean this: | |||
<nowiki> | |||
%postun | |||
if [ "$1" -ge "1" ]; then | |||
if [ "`readlink %{_sysconfdir}/alternatives/mta`" == "%{_sbindir}/sendmail.sendmail" ]; then | |||
%{_sbindir}/alternatives --set mta %{_sbindir}/sendmail.sendmail | |||
fi | |||
fi | |||
</nowiki> | |||
--[[User:Stardust85|Stardust85]] ([[User talk:Stardust85|talk]]) 14:56, 21 July 2016 (UTC) |
Revision as of 14:56, 21 July 2016
Is there a particular reason to require %{_sbindir}/update-alternatives instead if chkconfig? I thought generally we preferred the latter? Petersen 10:18, 14 November 2011 (UTC)
What is the purpose of %postun in the sendmail example? I mean this:
%postun if [ "$1" -ge "1" ]; then if [ "`readlink %{_sysconfdir}/alternatives/mta`" == "%{_sbindir}/sendmail.sendmail" ]; then %{_sbindir}/alternatives --set mta %{_sbindir}/sendmail.sendmail fi fi
--Stardust85 (talk) 14:56, 21 July 2016 (UTC)