diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/mount-setup.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/mount-setup.c b/src/core/mount-setup.c index 147333a6c6..0a45b24774 100644 --- a/src/core/mount-setup.c +++ b/src/core/mount-setup.c @@ -172,7 +172,10 @@ static int mount_one(const MountPoint *p, bool relabel) { /* The access mode here doesn't really matter too much, since * the mounted file system will take precedence anyway. */ - mkdir_p_label(p->where, 0755); + if (relabel) + mkdir_p_label(p->where, 0755); + else + mkdir_p(p->where, 0755); log_debug("Mounting %s to %s of type %s with options %s.", p->what, |