summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-init-tmpfiles
Commit message (Collapse)AuthorAge
* dh_installinit: call systemd-tmpfiles with the config file namesMichael Stapelberg2013-05-04
| | | | | | | | | | | | | | | This makes the invocation more specific and thus less likely to have any unwanted side effects. The invocation before was: systemd-tmpfiles --create >/dev/null || true With this commit, it becomes: systemd-tmpfiles --create bacula.conf >/dev/null || true (for bacula-fd shipping /etc/tmpfiles.d/bacula.conf)
* systemd: update check to look for /run/systemd/systemMichael Stapelberg2013-03-20
| | | | | | | | | The old check (for /sys/fs/cgroup/systemd) is a false-positive on systems which use standalone logind, but not systemd. The new one is recommended and used by upstream systemd in their sd_booted() implementation, see http://cgit.freedesktop.org/systemd/systemd/tree/src/libsystemd-daemon/sd-daemon.c#n518
* dh_installinit: only add systemd-tmpfiles --create when shipping tmpfilesMichael Stapelberg2012-10-29