Follow-up for
495e75ed5c8cce933947dae10a4a1b5f8067e432
The mentioned commit switched scope unit's "pids" deserialization
to call unit_watch_pid() already, meaning all later invocations
in scope_coldplug() are no-op. Remove the cruft altogether.
if (r < 0)
return r;
- if (!IN_SET(s->deserialized_state, SCOPE_DEAD, SCOPE_FAILED) && u->pids) {
- PidRef *pid;
- SET_FOREACH(pid, u->pids) {
- r = unit_watch_pidref(u, pid, /* exclusive= */ false);
- if (r < 0)
- return r;
- }
- }
-
bus_scope_track_controller(s);
scope_set_state(s, s->deserialized_state);