From 1b0fcd7411da6ae2cdb9d72100333987ce1aef44 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 16 Nov 2012 19:54:19 +0100 Subject: rpm: update RPM macros to include definitions for more drop-in directories and for reloading/rebuilding configuration More specifically this adds a number of macros that resolve to directories for udev rules, hwdb entries, tmpfiles and sysctl. Thsi also includes three new macros for rebuilding the hwbd/catalog index when a package drops in new files --- src/core/macros.systemd.in | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/core/macros.systemd.in') diff --git a/src/core/macros.systemd.in b/src/core/macros.systemd.in index e521df337d..f77082c2db 100644 --- a/src/core/macros.systemd.in +++ b/src/core/macros.systemd.in @@ -21,6 +21,11 @@ %_unitdir @systemunitdir@ %_presetdir @systempresetdir@ +%_udevhwdbdir @udevhwdbdir@ +%_udevrulesdir @udevrulesdir@ +%_journalcatalogdir @catalogdir@ +%_tmpfilesdir @tmpfilesdir@ +%_sysctldir @sysctldir@ %systemd_requires \ Requires(post): systemd \ @@ -54,3 +59,15 @@ if [ $1 -ge 1 ] ; then \ @rootbindir@/systemctl try-restart %{?*} >/dev/null 2>&1 || : \ fi \ %{nil} + +%udev_hwdb_update() \ +@rootbindir@/udevadm hwdb --update >/dev/null 2>&1 || : \ +%{nil} + +%udev_rules_update() \ +@rootbindir@/udevadm control --reload >/dev/null 2>&1 || : \ +%{nil} + +%journal_catalog_update() \ +@rootbindir@/journalctl --update-catalog >/dev/null 2>&1 || : \ +%{nil} -- cgit v1.2.3-54-g00ecf