]> git.proxmox.com Git - systemd.git/blob - src/core/macros.systemd.in
Imported Upstream version 228
[systemd.git] / src / core / macros.systemd.in
1 # -*- Mode: rpm-spec; indent-tabs-mode: nil -*- */
2 #
3 # This file is part of systemd.
4 #
5 # Copyright 2012 Lennart Poettering
6 #
7 # systemd is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU Lesser General Public License as published by
9 # the Free Software Foundation; either version 2.1 of the License, or
10 # (at your option) any later version.
11 #
12 # systemd is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public License
18 # along with systemd; If not, see <http://www.gnu.org/licenses/>.
19
20 # RPM macros for packages installing systemd unit files
21
22 %_unitdir @systemunitdir@
23 %_userunitdir @userunitdir@
24 %_presetdir @systempresetdir@
25 %_udevhwdbdir @udevhwdbdir@
26 %_udevrulesdir @udevrulesdir@
27 %_journalcatalogdir @catalogdir@
28 %_tmpfilesdir @tmpfilesdir@
29 %_sysusersdir @sysusersdir@
30 %_sysctldir @sysctldir@
31 %_binfmtdir @binfmtdir@
32
33 %systemd_requires \
34 Requires(post): systemd \
35 Requires(preun): systemd \
36 Requires(postun): systemd \
37 %{nil}
38
39 %systemd_post() \
40 if [ $1 -eq 1 ] ; then \
41 # Initial installation \
42 systemctl --no-reload preset %{?*} >/dev/null 2>&1 || : \
43 fi \
44 %{nil}
45
46 %systemd_user_post() %systemd_post --user --global %{?*}
47
48 %systemd_preun() \
49 if [ $1 -eq 0 ] ; then \
50 # Package removal, not upgrade \
51 systemctl --no-reload disable --now %{?*} > /dev/null 2>&1 || : \
52 fi \
53 %{nil}
54
55 %systemd_user_preun() \
56 if [ $1 -eq 0 ] ; then \
57 # Package removal, not upgrade \
58 systemctl --no-reload --user --global disable %{?*} > /dev/null 2>&1 || : \
59 fi \
60 %{nil}
61
62 %systemd_postun() %{nil}
63
64 %systemd_user_postun() %{nil}
65
66 %systemd_postun_with_restart() \
67 if [ $1 -ge 1 ] ; then \
68 # Package upgrade, not uninstall \
69 systemctl try-restart %{?*} >/dev/null 2>&1 || : \
70 fi \
71 %{nil}
72
73 %systemd_user_postun_with_restart() %{nil}
74
75 %udev_hwdb_update() \
76 udevadm hwdb --update >/dev/null 2>&1 || : \
77 %{nil}
78
79 %udev_rules_update() \
80 udevadm control --reload >/dev/null 2>&1 || : \
81 %{nil}
82
83 %journal_catalog_update() \
84 journalctl --update-catalog >/dev/null 2>&1 || : \
85 %{nil}
86
87 %tmpfiles_create() \
88 systemd-tmpfiles --create %{?*} >/dev/null 2>&1 || : \
89 %{nil}
90
91 %sysusers_create() \
92 systemd-sysusers %{?*} >/dev/null 2>&1 || : \
93 %{nil}
94
95 %sysusers_create_inline() \
96 echo %{?*} | systemd-sysusers - >/dev/null 2>&1 || : \
97 %{nil}
98
99 %sysctl_apply() \
100 @rootlibexecdir@/systemd-sysctl %{?*} >/dev/null 2>&1 || : \
101 %{nil}
102
103 %binfmt_apply() \
104 @rootlibexecdir@/systemd-binfmt %{?*} >/dev/null 2>&1 || : \
105 %{nil}