summaryrefslogtreecommitdiff
path: root/src/core/umount.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-08-24 22:50:16 +0200
committerLennart Poettering <lennart@poettering.net>2012-09-03 18:59:04 -0700
commit024f268d634159849e642e7005871739c428524d (patch)
tree88476368b1363b8010b4e1ff6ed7b846d6ec2bd0 /src/core/umount.c
parent81270860a5b8c6794f0c7bac8becfdd0c41a9385 (diff)
shutdown: don't attempt read-only mounts in a container
Diffstat (limited to 'src/core/umount.c')
-rw-r--r--src/core/umount.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/core/umount.c b/src/core/umount.c
index b9afac7ed5..83c9de3e82 100644
--- a/src/core/umount.c
+++ b/src/core/umount.c
@@ -34,6 +34,7 @@
#include "umount.h"
#include "path-util.h"
#include "util.h"
+#include "virt.h"
typedef struct MountPoint {
char *path;
@@ -548,11 +549,9 @@ static int dm_points_list_detach(MountPoint **head, bool *changed) {
int umount_all(bool *changed) {
int r;
bool umount_changed;
-
LIST_HEAD(MountPoint, mp_list_head);
LIST_HEAD_INIT(MountPoint, mp_list_head);
-
r = mount_points_list_get(&mp_list_head);
if (r < 0)
goto end;
@@ -572,7 +571,12 @@ int umount_all(bool *changed) {
if (r <= 0)
goto end;
- r = mount_points_list_remount_read_only(&mp_list_head, changed);
+ /* If we are in a container, don't attempt to read-only mount
+ anything as that brings no real benefits, but might confuse
+ the host, as we remount the superblock here, not the bind
+ mound. */
+ if (detect_container(NULL) <= 0)
+ r = mount_points_list_remount_read_only(&mp_list_head, changed);
end:
mount_points_list_free(&mp_list_head);