]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/macros.systemd.in
sysusers: optionally, read sysuers configuration from standard input
[thirdparty/systemd.git] / src / core / macros.systemd.in
CommitLineData
590f18a2
LP
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@
ed8086d1 23%_userunitdir @userunitdir@
a1d41e17 24%_presetdir @systempresetdir@
1b0fcd74
LP
25%_udevhwdbdir @udevhwdbdir@
26%_udevrulesdir @udevrulesdir@
27%_journalcatalogdir @catalogdir@
28%_tmpfilesdir @tmpfilesdir@
b532bdea 29%_sysusersdir @sysusersdir@
1b0fcd74 30%_sysctldir @sysctldir@
b532bdea 31%_binfmtdir @binfmtdir@
590f18a2
LP
32
33%systemd_requires \
34Requires(post): systemd \
35Requires(preun): systemd \
36Requires(postun): systemd \
37%{nil}
38
39%systemd_post() \
40if [ $1 -eq 1 ] ; then \
41 # Initial installation \
8cf7c965 42 systemctl preset %{?*} >/dev/null 2>&1 || : \
590f18a2
LP
43fi \
44%{nil}
45
46%systemd_preun() \
47if [ $1 -eq 0 ] ; then \
48 # Package removal, not upgrade \
8cf7c965
LP
49 systemctl --no-reload disable %{?*} > /dev/null 2>&1 || : \
50 systemctl stop %{?*} > /dev/null 2>&1 || : \
590f18a2
LP
51fi \
52%{nil}
53
54%systemd_postun() \
8cf7c965 55systemctl daemon-reload >/dev/null 2>&1 || : \
590f18a2
LP
56%{nil}
57
58%systemd_postun_with_restart() \
8cf7c965 59systemctl daemon-reload >/dev/null 2>&1 || : \
590f18a2
LP
60if [ $1 -ge 1 ] ; then \
61 # Package upgrade, not uninstall \
8cf7c965 62 systemctl try-restart %{?*} >/dev/null 2>&1 || : \
590f18a2
LP
63fi \
64%{nil}
1b0fcd74
LP
65
66%udev_hwdb_update() \
8cf7c965 67udevadm hwdb --update >/dev/null 2>&1 || : \
1b0fcd74
LP
68%{nil}
69
70%udev_rules_update() \
8cf7c965 71udevadm control --reload >/dev/null 2>&1 || : \
1b0fcd74
LP
72%{nil}
73
74%journal_catalog_update() \
8cf7c965 75journalctl --update-catalog >/dev/null 2>&1 || : \
1b0fcd74 76%{nil}
042e33ae
LP
77
78%tmpfiles_create() \
8cf7c965 79systemd-tmpfiles --create %{?*} >/dev/null 2>&1 || : \
042e33ae 80%{nil}
b532bdea
LP
81
82%sysusers_create() \
83systemd-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}