chiark / gitweb /
automount: use unit_pending_inactive() where appropriate
[elogind.git] / src / automount.c
index 0ae467cbd4f79a8fc005d78e05f0cbfd686c7e3c..9447c0d8fcf81af7c3c3a169bc4bccd70741ca90 100644 (file)
@@ -573,7 +573,8 @@ static void automount_enter_runnning(Automount *a) {
 
         /* We don't take mount requests anymore if we are supposed to
          * shut down anyway */
-        if (a->meta.job && a->meta.job->type == JOB_STOP) {
+        if (unit_pending_inactive(UNIT(a))) {
+                log_debug("Suppressing automount request on %s since unit stop is scheduled.", a->meta.id);
                 automount_send_ready(a, -EHOSTDOWN);
                 return;
         }