From: Luca Boccassi Date: Mon, 27 Nov 2023 19:34:49 +0000 (+0000) Subject: core: use new WantsMountsFor= for PrivateTmp=yes and tmp.mount X-Git-Tag: v256-rc1~1595^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=46d45f90b3660edf6dabc71843de6b56aa732b7d;p=thirdparty%2Fsystemd.git core: use new WantsMountsFor= for PrivateTmp=yes and tmp.mount --- diff --git a/src/core/unit.c b/src/core/unit.c index 252f2c5d2fe..aeafb5ae417 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -1331,12 +1331,7 @@ int unit_add_exec_dependencies(Unit *u, ExecContext *c) { } if (c->private_tmp) { - - /* FIXME: for now we make a special case for /tmp and add a weak dependency on - * tmp.mount so /tmp being masked is supported. However there's no reason to treat - * /tmp specifically and masking other mount units should be handled more - * gracefully too, see PR#16894. */ - r = unit_add_two_dependencies_by_name(u, UNIT_AFTER, UNIT_WANTS, "tmp.mount", true, UNIT_DEPENDENCY_FILE); + r = unit_add_mounts_for(u, "/tmp", UNIT_DEPENDENCY_FILE, UNIT_MOUNT_WANTS); if (r < 0) return r;