diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-05-16 11:55:36 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-05-19 03:24:43 +0200 |
commit | 059cc610b735134afa68a13feddc131c7bf6498e (patch) | |
tree | b510cd827bd39fdef3d4f13a7231de4831f07a85 /units/user-runtime-dir@.service.in | |
parent | meson: replace some m4 templates with jinja2 (diff) | |
download | systemd-059cc610b735134afa68a13feddc131c7bf6498e.tar.xz systemd-059cc610b735134afa68a13feddc131c7bf6498e.zip |
meson: use jinja2 for unit templates
We don't need two (and half) templating systems anymore, yay!
I'm keeping the changes minimal, to make the diff manageable. Some enhancements
due to a better templating system might be possible in the future.
For handling of '## ' — see the next commit.
Diffstat (limited to 'units/user-runtime-dir@.service.in')
-rw-r--r-- | units/user-runtime-dir@.service.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/units/user-runtime-dir@.service.in b/units/user-runtime-dir@.service.in index ff23e01af8..61becff2c6 100644 --- a/units/user-runtime-dir@.service.in +++ b/units/user-runtime-dir@.service.in @@ -15,8 +15,8 @@ StopWhenUnneeded=yes IgnoreOnIsolate=yes [Service] -ExecStart=@rootlibexecdir@/systemd-user-runtime-dir start %i -ExecStop=@rootlibexecdir@/systemd-user-runtime-dir stop %i +ExecStart={{ROOTLIBEXECDIR}}/systemd-user-runtime-dir start %i +ExecStop={{ROOTLIBEXECDIR}}/systemd-user-runtime-dir stop %i Type=oneshot RemainAfterExit=yes Slice=user-%i.slice |