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/systemd-random-seed.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/systemd-random-seed.service.in')
-rw-r--r-- | units/systemd-random-seed.service.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/units/systemd-random-seed.service.in b/units/systemd-random-seed.service.in index a7d4acb898..5c542ec846 100644 --- a/units/systemd-random-seed.service.in +++ b/units/systemd-random-seed.service.in @@ -11,7 +11,7 @@ Description=Load/Save Random Seed Documentation=man:systemd-random-seed.service(8) man:random(4) DefaultDependencies=no -RequiresMountsFor=@RANDOM_SEED@ +RequiresMountsFor={{RANDOM_SEED}} Conflicts=shutdown.target After=systemd-remount-fs.service Before=first-boot-complete.target shutdown.target @@ -21,8 +21,8 @@ ConditionVirtualization=!container [Service] Type=oneshot RemainAfterExit=yes -ExecStart=@rootlibexecdir@/systemd-random-seed load -ExecStop=@rootlibexecdir@/systemd-random-seed save +ExecStart={{ROOTLIBEXECDIR}}/systemd-random-seed load +ExecStop={{ROOTLIBEXECDIR}}/systemd-random-seed save # This service waits until the kernel's entropy pool is initialized, and may be # used as ordering barrier for service that require an initialized entropy |