From 10d18763ec6f31ded1535f810be765f7fab2d97d Mon Sep 17 00:00:00 2001 From: Zbigniew Jędrzejewski-Szmek Date: Sat, 30 Mar 2013 16:33:55 -0400 Subject: nspawn, machine-id-setup: warn if read-only mount call fails They are not crucial, but they shouldn't fail. --- src/nspawn/nspawn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nspawn') diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 9268cbc246..b8b692b474 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -537,8 +537,8 @@ static int setup_boot_id(const char *dest) { if (mount(from, to, "bind", MS_BIND, NULL) < 0) { log_error("Failed to bind mount boot id: %m"); r = -errno; - } else - mount(from, to, "bind", MS_BIND|MS_REMOUNT|MS_RDONLY, NULL); + } else if (mount(from, to, "bind", MS_BIND|MS_REMOUNT|MS_RDONLY, NULL)) + log_warning("Failed to make boot id read-only: %m"); unlink(from); return r; -- cgit v1.2.3-54-g00ecf