#  -*- Mode: rpm-spec; indent-tabs-mode: nil -*- */
#  SPDX-License-Identifier: LGPL-2.1-or-later
#

# RPM macros for packages installing systemd unit files
#
#
# When a package install systemd unit files, it should use the
# following macros:
#
# add %systemd_requires in the specfile (optional)
#
# Style 1
# Similar %post_service and %preun_service:
#
# %post
# %post_systemd demo.socket demo.service demo1
#
# %preun
# %preun_systemd demo.socket demo.service demo1
#


# systemd.
%_binfmtdir		/lib/binfmt.d
%_env_dir		/lib/environment.d
%_journal_catalogdir	/usr/lib/systemd/catalog
%_modprobedir		/lib/modprobe.d
%_modules_loaddir	/lib/modules-load.d
%_presetdir		/lib/systemd/system-preset
%_user_presetdir	/usr/lib/systemd/user-preset
%_sysctldir		/lib/sysctl.d
%_sysusersdir		/lib/sysusers.d
%_systemd_dir		/lib/systemd
%_tmpfilesdir		/lib/tmpfiles.d
%_unitdir		/lib/systemd/system
%_user_unitdir		/usr/lib/systemd/user
%_udev_hwdbdir		/lib/udev/hwdb.d
%_udev_rulesdir		/lib/udev/rules.d
%_gen_dir		/lib/systemd/system-generators
%_user_gen_dir		/usr/lib/systemd/user-generators
%_env_gen_dir		/lib/systemd/system-environment-generators
%_user_env_gen_dir	/usr/lib/systemd/user-environment-generators

# compat with systemd upstream.
%_environmentdir	%_env_dir
%_journalcatalogdir	%_journal_catalogdir
%_modulesloaddir	%_modules_loaddir
%_userunitdir		%_user_unitdir
%_userpresetdir		%_user_presetdir
%_udevhwdbdir		%_udev_hwdbdir
%_udevrulesdir		%_udev_rulesdir
%_systemd_util_dir	%_systemd_dir
%_systemdgeneratordir			%_gen_dir
%_systemdusergeneratordir		%_user_gen_dir
%_systemd_system_env_generator_dir	%_env_gen_dir
%_systemd_user_env_generator_dir	%_user_env_gen_dir


%systemd_requires \
Requires(post): systemd \
Requires(preun): systemd \
Requires(postun): systemd \
%{nil}

%__systemd_someargs_0(:) %{error:The %%%1 macro requires some arguments}
%__systemd_twoargs_2() %{nil}

%post_systemd() \
%{expand:%%{?__systemd_someargs_%#:%%__systemd_someargs_%# post_systemd}} \
if sd_booted; then \
    systemctl daemon-reload \
    if [ $1 -eq 1 ]; then \
        # Initial installation \
        systemctl -q preset %{?*} || : \
    else \
        systemctl try-restart %{?*} || : \
    fi \
fi \
%{nil}

%preun_systemd() \
%{expand:%%{?__systemd_someargs_%#:%%__systemd_someargs_%# preun_systemd}} \
if [ $1 -eq 0 ] && sd_booted; then \
    # Package removal, not upgrade \
    systemctl --no-reload -q disable --now %{?*} || : \
fi \
%{nil}


%systemd_post() \
%{expand:%%{?__systemd_someargs_%#:%%__systemd_someargs_%# systemd_post}} \
if [ $1 -eq 1 ] && sd_booted; then \
    # Initial installation \
    systemctl --no-reload preset %{?*} || : \
fi \
%{nil}

%systemd_user_post() \
%{expand:%%{?__systemd_someargs_%#:%%__systemd_someargs_%# systemd_user_post}} \
if [ $1 -eq 1 ] && sd_booted; then \
    # Initial installation \
    systemctl --no-reload preset --global %{?*} || : \
fi \
%{nil}

%systemd_preun() \
%{expand:%%{?__systemd_someargs_%#:%%__systemd_someargs_%# systemd_preun}} \
if [ $1 -eq 0 ] && sd_booted; then \
    # Package removal, not upgrade \
    if [ -d /run/systemd/system ]; then \
          systemctl --no-reload disable --now %{?*} || : \
    else \
          systemctl --no-reload disable %{?*} || : \
    fi \
fi \
%{nil}

%systemd_user_preun() \
%{expand:%%{?__systemd_someargs_%#:%%__systemd_someargs_%# systemd_user_preun}} \
if [ $1 -eq 0 ] && sd_booted; then \
    # Package removal, not upgrade \
    systemctl --global disable %{?*} || : \
fi \
%{nil}

%systemd_postun() \
%{expand:%%{?__systemd_someargs_%#:%%__systemd_someargs_%# systemd_postun}} \
%{nil}

%systemd_user_postun() \
%{expand:%%{?__systemd_someargs_%#:%%__systemd_someargs_%# systemd_user_postun}} \
%{nil}

%systemd_post_with_restart() \
%{expand:%%{?__systemd_someargs_%#:%%__systemd_someargs_%# systemd_post_with_restart}} \
if sd_booted; then \
    systemctl daemon-reload \
    if [ $1 -eq 1 ]; then \
        # Initial installation \
        systemctl -q preset %{?*} || : \
    else \
        # Package upgrade, not uninstall \
        systemctl try-restart %{?*} || : \
    fi \
%{nil}

%systemd_user_post_with_restart() %{nil}


%udev_hwdb_update() \
udevadm hwdb update || : \
%{nil}

%udev_rules_update() \
udevadm control --reload || : \
%{nil}

%journal_catalog_update() \
journalctl --update-catalog || : \
%{nil}

# Deprecated. Use %tmpfiles_create_package instead
%tmpfiles_create() \
%{expand:%%{?__systemd_someargs_%#:%%__systemd_someargs_%# tmpfiles_create}} \
command -v systemd-tmpfiles >/dev/null && systemd-tmpfiles --create %{?*} || : \
%{nil}

# Deprecated. Use %sysusers_create_package instead
%sysusers_create() \
%{expand:%%{?__systemd_someargs_%#:%%__systemd_someargs_%# sysusers_create}} \
command -v systemd-sysusers >/dev/null && systemd-sysusers %{?*} || : \
%{nil}

%sysusers_create_inline() \
command -v systemd-sysusers >/dev/null && systemd-sysusers - <<SYSTEMD_INLINE_EOF || : \
%{?*} \
SYSTEMD_INLINE_EOF\
%{nil}

# This should be used by package installation scripts which require users or
# groups to be present before the files installed by the package are present on
# disk (for example because some files are owned by those users or groups).
#
# Example:
#   Source1: %{name}-sysusers.conf
#   ...
#   %install
#   install -D %SOURCE1 %{buildroot}%{_sysusersdir}/%{name}.conf
#   %pre
#   %sysusers_create_package %{name} %SOURCE1
#   %files
#   %{_sysusersdir}/%{name}.conf
%sysusers_create_package() \
%{expand:%%{?!__systemd_twoargs_%#:%%{error:The %%%%sysusers_create_package macro requires two arguments}}} \
systemd-sysusers --replace=%_sysusersdir/%1.conf - <<SYSTEMD_INLINE_EOF || : \
%(cat %2) \
SYSTEMD_INLINE_EOF\
%{nil}

# This may be used by package installation scripts to create files according to
# their tmpfiles configuration from a package installation script, even before
# the files of that package are installed on disk.
#
# Example:
#   Source1: %{name}-tmpfiles.conf
#   ...
#   %install
#   install -D %SOURCE1 %{buildroot}%{_tmpfilesdir}/%{name}.conf
#   %pre
#   %tmpfiles_create_package %{name} %SOURCE1
#   %files
#   %{_tmpfilesdir}/%{name}.conf
%tmpfiles_create_package() \
%{expand:%%{?!__systemd_twoargs_%#:%%{error:The %%%%tmpfiles_create_package macro requires two arguments}}} \
systemd-tmpfiles --replace=%_tmpfilesdir/%1.conf --create - <<SYSTEMD_INLINE_EOF || : \
%(cat %2) \
SYSTEMD_INLINE_EOF\
%{nil}

%sysctl_apply() \
%{expand:%%{?__systemd_someargs_%#:%%__systemd_someargs_%# sysctl_apply}} \
systemd-sysctl %{?*} || : \
%{nil}

%binfmt_apply() \
%{expand:%%{?__systemd_someargs_%#:%%__systemd_someargs_%# binfmt_apply}} \
systemd-binfmt %{?*} || : \
%{nil}

