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 10:24:43 +0900 |
commit | 059cc610b735134afa68a13feddc131c7bf6498e (patch) | |
tree | b510cd827bd39fdef3d4f13a7231de4831f07a85 /units/quotaon.service.in | |
parent | 6b1aac3ccf3a554011a1a6030672fa5b5c4b4f77 (diff) | |
download | systemd-059cc610b735134afa68a13feddc131c7bf6498e.tar.gz |
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/quotaon.service.in')
-rw-r--r-- | units/quotaon.service.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/units/quotaon.service.in b/units/quotaon.service.in index fa6b4c8239..ffabebfafe 100644 --- a/units/quotaon.service.in +++ b/units/quotaon.service.in @@ -13,9 +13,9 @@ Documentation=man:quotaon(8) DefaultDependencies=no After=systemd-quotacheck.service Before=remote-fs.target shutdown.target -ConditionPathExists=@QUOTAON@ +ConditionPathExists={{QUOTAON}} [Service] Type=oneshot RemainAfterExit=yes -ExecStart=@QUOTAON@ -aug +ExecStart={{QUOTAON}} -aug |