blob: 46e8a03e260c593f779b1bcdba5d9d78bc0f6b55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# -*- Mode: rpm-spec; indent-tabs-mode: nil -*- */
#
# This file is part of systemd.
#
# Copyright 2015 Zbigniew Jędrzejewski-Szmek
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# systemd is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with systemd; If not, see <http://www.gnu.org/licenses/>.
# The contents of this are an example to be copied into systemd.spec.
# This will run after any package is initially installed or
# upgraded. We care about the case where a package is initially
# installed, because other cases are covered by the scriptlets below,
# so sometimes we will reload needlessly.
%transfiletriggerin -- @systemunitdir@ /etc/systemd/system
systemctl daemon-reload &>/dev/null || :
# On removal, we need to run daemon-reload after any units have been
# removed. %transfiletriggerpostun would be ideal, but it does not get
# executed for some reason.
# On upgrade, we need to run daemon-reload after any new unit files
# have been installed, but before %postun scripts in packages get
# executed. %transfiletriggerun gets the right list of files
# but it is invoked too early (before changes happen).
# %filetriggerpostun happens at the right time, but it fires for
# every package.
# To execute the reload at the right time, we create a state
# file in %transfiletriggerun and execute the daemon-reload in
# the first %filetriggerpostun.
%transfiletriggerun -- @systemunitdir@ /etc/systemd/system
mkdir -p %{_localstatedir}/lib/rpm-state/systemd
touch %{_localstatedir}/lib/rpm-state/systemd/needs-reload
%filetriggerpostun -- @systemunitdir@ /etc/systemd/system
if [ -e %{_localstatedir}/lib/rpm-state/systemd/needs-reload ]; then
rm %{_localstatedir}/lib/rpm-state/systemd/needs-reload || :
rmdir %{_localstatedir}/lib/rpm-state/systemd || :
systemctl daemon-reload || :
fi
|