summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-04-16 01:58:43 +0200
committerLennart Poettering <lennart@poettering.net>2011-04-16 02:03:35 +0200
commit42549a5a6ac5ca2d3e830b3ed1df2dec501bc692 (patch)
tree93b184095c429c6980987bb88bd8bafc9dfcd332
parent9beb3f4d5c527f995e0e44308d7372fa4ea5470f (diff)
downloadsystemd-42549a5a6ac5ca2d3e830b3ed1df2dec501bc692.tar.gz
units: order quotacheck after remount-rootfs
-rw-r--r--units/fsck-root.service.in2
-rw-r--r--units/quotacheck.service.in2
-rw-r--r--units/remount-rootfs.service2
3 files changed, 3 insertions, 3 deletions
diff --git a/units/fsck-root.service.in b/units/fsck-root.service.in
index 8f4adc48e0..7b3529db07 100644
--- a/units/fsck-root.service.in
+++ b/units/fsck-root.service.in
@@ -9,7 +9,7 @@
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
+Before=local-fs.target shutdown.target
# Dracut informs us with this flag file if the root fsck was already run
ConditionPathExists=!/run/initramfs/root-fsck
diff --git a/units/quotacheck.service.in b/units/quotacheck.service.in
index ed1ddc5589..27dcb1e4c6 100644
--- a/units/quotacheck.service.in
+++ b/units/quotacheck.service.in
@@ -8,7 +8,7 @@
[Unit]
Description=File System Quota Check
DefaultDependencies=no
-After=systemd-readahead-collect.service systemd-readahead-replay.service
+After=systemd-readahead-collect.service systemd-readahead-replay.service remount-rootfs.service
Before=local-fs.target shutdown.target
ConditionPathExists=/sbin/quotacheck
diff --git a/units/remount-rootfs.service b/units/remount-rootfs.service
index 31309015ca..e95023f03d 100644
--- a/units/remount-rootfs.service
+++ b/units/remount-rootfs.service
@@ -9,7 +9,7 @@
Description=Remount Root FS
DefaultDependencies=no
Conflicts=shutdown.target
-After=systemd-readahead-collect.service systemd-readahead-replay.service
+After=systemd-readahead-collect.service systemd-readahead-replay.service fsck-root.service
Before=local-fs.target shutdown.target
[Service]