From 9d6d4c305ab8d65aab7f546450d7331f760b7259 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Fri, 28 Jan 2022 22:56:10 +0000 Subject: core: don't fail on EEXIST when creating mount point systemd[1016]: Failed to mount /tmp/app1 (type n/a) on /run/systemd/unit-extensions/1 (MS_BIND ): No such file or directory systemd[1016]: Failed to create destination mount point node '/run/systemd/unit-extensions/1': File exists --- src/core/namespace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/namespace.c b/src/core/namespace.c index c8dc6c0503a..e75e003e71a 100644 --- a/src/core/namespace.c +++ b/src/core/namespace.c @@ -1482,7 +1482,7 @@ static int apply_one_mount( (void) mkdir_parents(mount_entry_path(m), 0755); q = make_mount_point_inode_from_path(what, mount_entry_path(m), 0755); - if (q < 0) + if (q < 0 && q != -EEXIST) log_error_errno(q, "Failed to create destination mount point node '%s': %m", mount_entry_path(m)); else -- cgit v1.2.3-59-g8ed1b