document the previous change

OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd-rpm-macros?expand=0&rev=41
This commit is contained in:
Franck Bui 2020-11-02 08:55:25 +00:00 committed by Git OBS Bridge
parent c6f0727a32
commit 4dd7db0039
2 changed files with 12 additions and 3 deletions

View File

@ -75,7 +75,7 @@ if [ $1 -eq 1 ]; then \
else \
for service in %{?*} ; do \
# The tag file might have been left by a preceding \
# update (see 1059627) \
# update (see bsc#1059627) \
rm -f "/run/rpm-%{name}-update-$service-new-in-upgrade" \
\
if [ ! -e "/usr/lib/systemd/system/$service" ]; then \
@ -134,6 +134,9 @@ fi \
# On uninstall, disable and stop services
#
# Note: '-n' and '-f' options are still allowed to kept backward compatibility
# with SLE
#
%service_del_preun(fn) \
if [ $1 -eq 0 -a -x /usr/bin/systemctl ]; then \
# Package removal, not upgrade \
@ -160,8 +163,9 @@ fi \
# On uninstall, tell systemd to reload its unit files
#
# Options used if not in an installation systems
# -f that is force service restart in removal (deprecated)
# -n that do not touch active service (depredacted)
# -f : force service restart on update
# -n : do not touch active service (deprecated)
#
# the default is to check for DISABLE_RESTART_ON_UPDATE environment
# variable if not found use the value read from /etc/sysconfig/services
#

View File

@ -3,6 +3,11 @@ Fri Oct 30 17:37:54 UTC 2020 - Franck Bui <fbui@suse.com>
- Drop DISABLE_STOP_ON_REMOVAL support (jsc#SLE-8968)
%service_del_preun still accepts '-n' and '-f' options to keep
backward compatibility with SLE (as some packages share the same
devel project between SLE and openSUSE) but these options are now
ignored on Factory.
-------------------------------------------------------------------
Fri Sep 25 09:25:44 UTC 2020 - Franck Bui <fbui@suse.com>