units: move Before deps for quota services to remote-fs.target (#5627)
authortblume <Thomas.Blume@suse.com>
Thu, 30 Mar 2017 09:21:18 +0000 (11:21 +0200)
committerLennart Poettering <lennart@poettering.net>
Thu, 30 Mar 2017 09:21:18 +0000 (11:21 +0200)
Creating quota on an iscsi device is causing dependency loops at next reboot.
Reason is that systemd-quotacheck and quotaon.service are ordered before
local-fs.target and quota enabled mounts have a before dependency to them.
This cannot work for _netdev mounts, because network activation is ordered
after local-fs.target.
Moving the Before dependency for systemd-quotacheck and quotaon.service
to remote-fs.target fixes this.

units/quotaon.service.in
units/systemd-quotacheck.service.in

index 7d59a40..f3e1e27 100644 (file)
@@ -10,7 +10,7 @@ Description=Enable File System Quotas
 Documentation=man:quotaon(8)
 DefaultDependencies=no
 After=systemd-quotacheck.service
-Before=local-fs.target shutdown.target
+Before=remote-fs.target shutdown.target
 ConditionPathExists=@QUOTAON@
 
 [Service]
index 5cb9bc3..6b1999a 100644 (file)
@@ -10,7 +10,7 @@ Description=File System Quota Check
 Documentation=man:systemd-quotacheck.service(8)
 DefaultDependencies=no
 After=systemd-remount-fs.service
-Before=local-fs.target shutdown.target
+Before=remote-fs.target shutdown.target
 ConditionPathExists=@QUOTACHECK@
 
 [Service]