X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fmount.c;h=ca21ec7d0e747307b0fd9f999538ee18595b1498;hb=8eb5a6e001afd3da22fe4c16fe786a362d46733e;hp=14ac0a060e5bd8ef33bc67b0157ae7629d3a8b45;hpb=2db7648aa8bc9a31342d82a3fa0e63664cae5431;p=elogind.git diff --git a/src/core/mount.c b/src/core/mount.c index 14ac0a060..ca21ec7d0 100644 --- a/src/core/mount.c +++ b/src/core/mount.c @@ -892,6 +892,7 @@ static void mount_enter_unmounting(Mount *m) { if ((r = exec_command_set( m->control_command, "/bin/umount", + "-n", m->where, NULL)) < 0) goto fail; @@ -934,6 +935,7 @@ static void mount_enter_mounting(Mount *m) { r = exec_command_set( m->control_command, "/bin/mount", + "-n", m->parameters_fragment.what, m->where, "-t", m->parameters_fragment.fstype ? m->parameters_fragment.fstype : "auto", @@ -981,6 +983,7 @@ static void mount_enter_remounting(Mount *m) { r = exec_command_set( m->control_command, "/bin/mount", + "-n", m->parameters_fragment.what, m->where, "-t", m->parameters_fragment.fstype ? m->parameters_fragment.fstype : "auto",