From a04f58d6cb678a574e85a26c453aeb6c7884bb93 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 6 Apr 2010 21:55:58 +0200 Subject: [PATCH] mount-setup: create mount points if not existing yet --- mount-setup.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mount-setup.c b/mount-setup.c index 12605ebb4..c6a471237 100644 --- a/mount-setup.c +++ b/mount-setup.c @@ -85,6 +85,10 @@ static int mount_one(const char *t[]) { if (r > 0) return 0; + /* The access mode here doesn't really matter too much, since + * the mounted file system will take precedence anyway. */ + mkdir(t[MOUNT_WHERE], 0755); + log_debug("Mounting %s to %s of type %s with options %s.", t[MOUNT_WHAT], t[MOUNT_WHERE], -- 2.30.2