From 335aa753fa60ba0bb3c9fe679c761d5f1f3b1588 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 20 Oct 2010 00:13:23 +0200 Subject: [PATCH] units: add missing fsck units --- Makefile.am | 7 ++++--- units/.gitignore | 3 +++ units/fsck-root.service.in | 17 +++++++++++++++++ units/fsck@.service.in | 17 +++++++++++++++++ units/quotacheck.service.in | 18 ++++++++++++++++++ units/quotaon.service | 18 ++++++++++++++++++ 6 files changed, 77 insertions(+), 3 deletions(-) create mode 100644 units/fsck-root.service.in create mode 100644 units/fsck@.service.in create mode 100644 units/quotacheck.service.in create mode 100644 units/quotaon.service diff --git a/Makefile.am b/Makefile.am index 9417b139e..6cad9adc4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -208,8 +208,7 @@ dist_systemunit_DATA = \ units/smartcard.target \ units/systemd-readahead-done.timer \ units/systemd-tmpfiles-clean.timer \ - units/quotaon.service \ - units/quotacheck.service + units/quotaon.service nodist_systemunit_DATA = \ units/sysinit.target \ @@ -241,7 +240,8 @@ nodist_systemunit_DATA = \ units/reboot.service \ units/kexec.service \ units/fsck@.service \ - units/fsck-root.service + units/fsck-root.service \ + units/quotacheck.service dist_sessionunit_DATA = \ units/session/default.target \ @@ -283,6 +283,7 @@ EXTRA_DIST = \ units/session/exit.service.in \ units/fsck@.service.in \ units/fsck-root.service.in \ + units/quotacheck.service.in \ systemd.pc.in if TARGET_FEDORA diff --git a/units/.gitignore b/units/.gitignore index 464e4bbd4..2bd507a76 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 000000000..987503a2b --- /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 000000000..0f4f02662 --- /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 000000000..9c8d7c8f0 --- /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 000000000..60f6be644 --- /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 -- 2.30.2