]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
path: stop watching path specs once we triggered the target unit
authorMichal Sekletar <msekleta@redhat.com>
Mon, 9 Sep 2019 12:38:35 +0000 (14:38 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 17 Sep 2019 08:11:32 +0000 (10:11 +0200)
We start watching them again once we get a notification that triggered
unit entered inactive or failed state.

Fixes: #10503
src/core/path.c

index 562cd352a3e57b933501c3d8e13cf31975e09f51..ac1289a658c5242171d24485058b0e83b19a2c57 100644 (file)
@@ -480,11 +480,9 @@ static void path_enter_running(Path *p) {
 
         p->inotify_triggered = false;
 
-        r = path_watch(p);
-        if (r < 0)
-                goto fail;
-
         path_set_state(p, PATH_RUNNING);
+        path_unwatch(p);
+
         return;
 
 fail: