diff options
author | Thomas Blume <tblume@suse.com> | 2022-09-19 16:57:48 +0200 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2024-03-09 20:32:09 +0100 |
commit | fc5c6eccb4bdd5fa22c2f1118fc57a230409470a (patch) | |
tree | 69a9f3c38c332cd133d66359fae672e9ec47115a /units/systemd-quotacheck@.service.in | |
parent | core/exec-invoke: Fix missing arguments for PR_SET_MEMORY_MERGE call (diff) | |
download | systemd-fc5c6eccb4bdd5fa22c2f1118fc57a230409470a.tar.xz systemd-fc5c6eccb4bdd5fa22c2f1118fc57a230409470a.zip |
units: make templates for quotaon and systemd-quotacheck service
Diffstat (limited to 'units/systemd-quotacheck@.service.in')
-rw-r--r-- | units/systemd-quotacheck@.service.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/units/systemd-quotacheck@.service.in b/units/systemd-quotacheck@.service.in new file mode 100644 index 0000000000..dddce2ee83 --- /dev/null +++ b/units/systemd-quotacheck@.service.in @@ -0,0 +1,26 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later +# +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. + +[Unit] +Description=File System Quota Check +Documentation=man:systemd-quotacheck.service(8) + +ConditionPathExists={{QUOTACHECK}} +ConditionPathExists=!/etc/initrd-release + +DefaultDependencies=no +After=%i.mount +Before=shutdown.target +Conflicts=shutdown.target + +[Service] +Type=oneshot +RemainAfterExit=yes +ExecStart={{LIBEXECDIR}}/systemd-quotacheck %f +TimeoutSec=infinity |