8b4408b
#  -*- Mode: rpm-spec; indent-tabs-mode: nil -*- */
89b5669
#  SPDX-License-Identifier: LGPL-2.1-or-later
8b4408b
#
8b4408b
#  This file is part of systemd.
8b4408b
#
98ea23b
#  Copyright 2018 Neal Gompa
8b4408b
8b4408b
# The contents of this are an example to be copied into systemd.spec.
98ea23b
#
89b5669
# Minimum rpm version supported: 4.14.0
8b4408b
Colin Walters 8e6b394
%transfiletriggerin -P 900900 -- /usr/lib/systemd/system /etc/systemd/system
Colin Walters 8e6b394
# This script will run after any package is initially installed or
Colin Walters 8e6b394
# upgraded. We care about the case where a package is initially
Colin Walters 8e6b394
# installed, because other cases are covered by the *un scriptlets,
Colin Walters 8e6b394
# so sometimes we will reload needlessly.
89b5669
if test -d "/run/systemd/system"; then
89b5669
  %{_bindir}/systemctl daemon-reload || :
89b5669
  %{_bindir}/systemctl reload-or-restart --marked || :
Colin Walters 8e6b394
fi
8b4408b
89b5669
%transfiletriggerpostun -P 1000100 -- /usr/lib/systemd/system /etc/systemd/system
Colin Walters 8e6b394
# On removal, we need to run daemon-reload after any units have been
89b5669
# removed.
Colin Walters 8e6b394
# On upgrade, we need to run daemon-reload after any new unit files
Colin Walters 8e6b394
# have been installed, but before %postun scripts in packages get
89b5669
# executed.
Colin Walters 8e6b394
if test -d "/run/systemd/system"; then
89b5669
  %{_bindir}/systemctl daemon-reload || :
Colin Walters 8e6b394
fi
8b4408b
89b5669
%transfiletriggerpostun -P 10000 -- /usr/lib/systemd/system /etc/systemd/system
89b5669
# We restart remaining services that should be restarted here.
89b5669
if test -d "/run/systemd/system"; then
89b5669
  %{_bindir}/systemctl reload-or-restart --marked || :
Colin Walters 8e6b394
fi
8b4408b
89b5669
%transfiletriggerin -P 1000700 -- /usr/lib/sysusers.d
Colin Walters 8e6b394
# This script will process files installed in /usr/lib/sysusers.d to create
Colin Walters 8e6b394
# specified users automatically. The priority is set such that it
Colin Walters 8e6b394
# will run before the tmpfiles file trigger.
89b5669
if test -d "/run/systemd/system"; then
89aa081
  %{_bindir}/systemd-sysusers || :
Colin Walters 8e6b394
fi
98ea23b
89b5669
%transfiletriggerin -P 1000700 udev -- /usr/lib/udev/hwdb.d
Colin Walters 8e6b394
# This script will automatically invoke hwdb update if files have been
Colin Walters 8e6b394
# installed or updated in /usr/lib/udev/hwdb.d.
89b5669
if test -d "/run/systemd/system"; then
89aa081
  %{_bindir}/systemd-hwdb update || :
Colin Walters 8e6b394
fi
98ea23b
89b5669
%transfiletriggerin -P 1000700 -- /usr/lib/systemd/catalog
Colin Walters 8e6b394
# This script will automatically invoke journal catalog update if files
Colin Walters 8e6b394
# have been installed or updated in /usr/lib/systemd/catalog.
89b5669
if test -d "/run/systemd/system"; then
89aa081
  %{_bindir}/journalctl --update-catalog || :
Colin Walters 8e6b394
fi
98ea23b
89b5669
%transfiletriggerin -P 1000700 -- /usr/lib/binfmt.d
89b5669
# This script will automatically apply binfmt rules if files have been
89b5669
# installed or updated in /usr/lib/binfmt.d.
89b5669
if test -d "/run/systemd/system"; then
89b5669
  # systemd-binfmt might fail if binfmt_misc kernel module is not loaded
89b5669
  # during install
89b5669
  /usr/lib/systemd/systemd-binfmt || :
89b5669
fi
89b5669
89b5669
%transfiletriggerin -P 1000600 -- /usr/lib/tmpfiles.d
89b5669
# This script will process files installed in /usr/lib/tmpfiles.d to create
89b5669
# tmpfiles automatically. The priority is set such that it will run
89b5669
# after the sysusers file trigger, but before any other triggers.
89b5669
if test -d "/run/systemd/system"; then
89b5669
  %{_bindir}/systemd-tmpfiles --create || :
89b5669
fi
89b5669
89b5669
%transfiletriggerin -P 1000600 udev -- /usr/lib/udev/rules.d
Colin Walters 8e6b394
# This script will automatically update udev with new rules if files
Colin Walters 8e6b394
# have been installed or updated in /usr/lib/udev/rules.d.
89aa081
if test -e /run/udev/control; then
89aa081
  %{_bindir}/udevadm control --reload || :
Colin Walters 8e6b394
fi
98ea23b
89b5669
%transfiletriggerin -P 1000500 -- /usr/lib/sysctl.d
Colin Walters 8e6b394
# This script will automatically apply sysctl rules if files have been
Colin Walters 8e6b394
# installed or updated in /usr/lib/sysctl.d.
89b5669
if test -d "/run/systemd/system"; then
89aa081
  /usr/lib/systemd/systemd-sysctl || :
Colin Walters 8e6b394
fi