chiark / gitweb /
rpm: add RPM macro for creating tmpfiles entries after package installation
authorLennart Poettering <lennart@poettering.net>
Tue, 16 Jul 2013 16:15:48 +0000 (18:15 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 16 Jul 2013 16:54:03 +0000 (18:54 +0200)
TODO
src/core/macros.systemd.in

diff --git a/TODO b/TODO
index 4be6249419e639a61dedcdf6e60ae384b97fdadb..7401a5781e50532be6d28f6d6eba0a51bd91fc42 100644 (file)
--- a/TODO
+++ b/TODO
@@ -56,6 +56,8 @@ CGroup Rework Completion:
 
 Features:
 
+* Fedora: post FPC ticket to move add %tmpfiles_create to the packaging guidelines
+
 * add rpm macros for applying tmpfiles --create after package installation
 
 * when parsing calendar timestamps support the UTC timezone (even if we won't support arbitrary timezone specs, support UTC itself certainly makes sense), also support syntaxes such as +0200
index 4ad8186fae5d24617e881a0e2cf6c96ad57679c5..89b48259ad6bbc376c3ba597bee324955555f174 100644 (file)
@@ -72,3 +72,7 @@ fi \
 %journal_catalog_update() \
 @rootbindir@/journalctl --update-catalog >/dev/null 2>&1 || : \
 %{nil}
+
+%tmpfiles_create() \
+@rootbindir@/systemd-tmpfiles --create %{?*} >/dev/null 2>&1 || : \
+%{nil}