2012-06-22 00:14:17 +04:00
# -*- Mode: makefile; indent-tabs-mode: t -*- */
#
# This file is part of systemd.
#
# Copyright 2012 Lennart Poettering
#
# 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/>.
# RPM macros for packages installing systemd unit files
%_unitdir @systemunitdir@
2013-06-17 20:37:07 +04:00
%_userunitdir @userunitdir@
2012-09-14 00:17:46 +04:00
%_presetdir @systempresetdir@
2012-11-16 22:54:19 +04:00
%_udevhwdbdir @udevhwdbdir@
%_udevrulesdir @udevrulesdir@
%_journalcatalogdir @catalogdir@
%_tmpfilesdir @tmpfilesdir@
%_sysctldir @sysctldir@
2012-06-22 00:14:17 +04:00
%systemd_requires \
Requires(post): systemd \
Requires(preun): systemd \
Requires(postun): systemd \
%{nil}
%systemd_post() \
if [ $1 -eq 1 ] ; then \
# Initial installation \
2014-06-13 21:05:22 +04:00
systemctl preset %{?*} >/dev/null 2>&1 || : \
2012-06-22 00:14:17 +04:00
fi \
%{nil}
%systemd_preun() \
if [ $1 -eq 0 ] ; then \
# Package removal, not upgrade \
2014-06-13 21:05:22 +04:00
systemctl --no-reload disable %{?*} > /dev/null 2>&1 || : \
systemctl stop %{?*} > /dev/null 2>&1 || : \
2012-06-22 00:14:17 +04:00
fi \
%{nil}
%systemd_postun() \
2014-06-13 21:05:22 +04:00
systemctl daemon-reload >/dev/null 2>&1 || : \
2012-06-22 00:14:17 +04:00
%{nil}
%systemd_postun_with_restart() \
2014-06-13 21:05:22 +04:00
systemctl daemon-reload >/dev/null 2>&1 || : \
2012-06-22 00:14:17 +04:00
if [ $1 -ge 1 ] ; then \
# Package upgrade, not uninstall \
2014-06-13 21:05:22 +04:00
systemctl try-restart %{?*} >/dev/null 2>&1 || : \
2012-06-22 00:14:17 +04:00
fi \
%{nil}
2012-11-16 22:54:19 +04:00
%udev_hwdb_update() \
2014-06-13 21:05:22 +04:00
udevadm hwdb --update >/dev/null 2>&1 || : \
2012-11-16 22:54:19 +04:00
%{nil}
%udev_rules_update() \
2014-06-13 21:05:22 +04:00
udevadm control --reload >/dev/null 2>&1 || : \
2012-11-16 22:54:19 +04:00
%{nil}
%journal_catalog_update() \
2014-06-13 21:05:22 +04:00
journalctl --update-catalog >/dev/null 2>&1 || : \
2012-11-16 22:54:19 +04:00
%{nil}
2013-07-16 20:15:48 +04:00
%tmpfiles_create() \
2014-06-13 21:05:22 +04:00
systemd-tmpfiles --create %{?*} >/dev/null 2>&1 || : \
2013-07-16 20:15:48 +04:00
%{nil}