diff options
Diffstat (limited to 'units')
-rw-r--r-- | units/.gitignore | 3 | ||||
-rw-r--r-- | units/fsck-root.service.in | 17 | ||||
-rw-r--r-- | units/fsck@.service.in | 17 | ||||
-rw-r--r-- | units/quotacheck.service.in | 18 | ||||
-rw-r--r-- | units/quotaon.service | 18 |
5 files changed, 73 insertions, 0 deletions
diff --git a/units/.gitignore b/units/.gitignore index 464e4bbd4d..2bd507a763 100644 --- a/units/.gitignore +++ b/units/.gitignore @@ -1,3 +1,6 @@ +quotacheck.service +fsck@.service +fsck-root.service systemd-tmpfiles-clean.service systemd-tmpfiles-setup.service halt.service diff --git a/units/fsck-root.service.in b/units/fsck-root.service.in new file mode 100644 index 0000000000..987503a2b8 --- /dev/null +++ b/units/fsck-root.service.in @@ -0,0 +1,17 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +[Unit] +Description=File System Check on Root Device +DefaultDependencies=no +After=systemd-readahead-collect.service systemd-readahead-replay.service +Before=local-fs.target shutdown.target remount-rootfs.service quotacheck.service + +[Service] +Type=oneshot +RemainAfterExit=no +ExecStart=@rootlibexecdir@/systemd-fsck diff --git a/units/fsck@.service.in b/units/fsck@.service.in new file mode 100644 index 0000000000..0f4f026620 --- /dev/null +++ b/units/fsck@.service.in @@ -0,0 +1,17 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +[Unit] +Description=File System Check on %I +DefaultDependencies=no +After=systemd-readahead-collect.service systemd-readahead-replay.service +Before=local-fs.target shutdown.target + +[Service] +Type=oneshot +RemainAfterExit=no +ExecStart=@rootlibexecdir@/systemd-fsck %I diff --git a/units/quotacheck.service.in b/units/quotacheck.service.in new file mode 100644 index 0000000000..9c8d7c8f0b --- /dev/null +++ b/units/quotacheck.service.in @@ -0,0 +1,18 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +[Unit] +Description=Quota Check +DefaultDependencies=no +After=systemd-readahead-collect.service systemd-readahead-replay.service +Before=local-fs.target shutdown.target +ConditionFileExists=/sbin/quotacheck + +[Service] +Type=oneshot +RemainAfterExit=yes +ExecStart=@rootlibexecdir@/systemd-quotacheck diff --git a/units/quotaon.service b/units/quotaon.service new file mode 100644 index 0000000000..60f6be6441 --- /dev/null +++ b/units/quotaon.service @@ -0,0 +1,18 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +[Unit] +Description=Quota Check +DefaultDependencies=no +After=systemd-readahead-collect.service systemd-readahead-replay.service quotacheck.service +Before=local-fs.target shutdown.target +ConditionFileExists=/sbin/quotaon + +[Service] +Type=oneshot +RemainAfterExit=yes +ExecStart=/sbin/quotaon -anug |