Print warning with failing umount

This commit is contained in:
Robert Swiecki 2016-03-23 17:23:18 +01:00
parent 66d3a14530
commit db4a90d225

14
mount.c
View File

@ -194,12 +194,14 @@ bool mountInitNs(struct nsjconf_t * nsjconf)
}
}
/*
* Remove the tmpfs from /tmp is we are mounting / as root
*/
if (0 == strcmp(nsjconf->chroot, "/")) {
umount2(destdir, MNT_DETACH);
}
/*
* Remove the tmpfs from /tmp is we are mounting / as root
*/
if (0 == strcmp(nsjconf->chroot, "/")) {
if (umount2(destdir, MNT_DETACH) == -1) {
PLOG_W("umount2('%s', MNT_DETACH) failed", destdir);
}
}
return true;
}