chiark / gitweb /
resolved: when there's already somebody listening on the LLMNR ports, simple disable...
[elogind.git] / src / core / macros.systemd.in
1 #  -*- Mode: makefile; indent-tabs-mode: t -*- */
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 preset %{?*} >/dev/null 2>&1 || : \
43 fi \
44 %{nil}
45
46 %systemd_preun() \
47 if [ $1 -eq 0 ] ; then \
48         # Package removal, not upgrade \
49         systemctl --no-reload disable %{?*} > /dev/null 2>&1 || : \
50         systemctl stop %{?*} > /dev/null 2>&1 || : \
51 fi \
52 %{nil}
53
54 %systemd_postun() \
55 systemctl daemon-reload >/dev/null 2>&1 || : \
56 %{nil}
57
58 %systemd_postun_with_restart() \
59 systemctl daemon-reload >/dev/null 2>&1 || : \
60 if [ $1 -ge 1 ] ; then \
61         # Package upgrade, not uninstall \
62         systemctl try-restart %{?*} >/dev/null 2>&1 || : \
63 fi \
64 %{nil}
65
66 %udev_hwdb_update() \
67 udevadm hwdb --update >/dev/null 2>&1 || : \
68 %{nil}
69
70 %udev_rules_update() \
71 udevadm control --reload >/dev/null 2>&1 || : \
72 %{nil}
73
74 %journal_catalog_update() \
75 journalctl --update-catalog >/dev/null 2>&1 || : \
76 %{nil}
77
78 %tmpfiles_create() \
79 systemd-tmpfiles --create %{?*} >/dev/null 2>&1 || : \
80 %{nil}
81
82 %sysusers_create() \
83 systemd-sysusers %{?*} >/dev/null 2>&1 || : \
84 %{nil}
85
86 %sysctl_apply() \
87 @rootlibexecdir@/systemd-sysctl %{?*} >/dev/null 2>&1 || : \
88 %{nil}
89
90 %binfmt_apply() \
91 @rootlibexecdir@/systemd-binfmt %{?*} >/dev/null 2>&1 || : \
92 %{nil}