diff options
-rw-r--r-- | src/nspawn.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/nspawn.c b/src/nspawn.c index 7b65e9853c..685b4d4e50 100644 --- a/src/nspawn.c +++ b/src/nspawn.c @@ -184,7 +184,8 @@ static int mount_all(const char *dest) { break; } - if ((t = path_is_mount_point(where, false)) < 0) { + t = path_is_mount_point(where, false); + if (t < 0) { log_error("Failed to detect whether %s is a mount point: %s", where, strerror(-t)); free(where); @@ -229,6 +230,11 @@ static int mount_all(const char *dest) { free(where); } + if (asprintf(&where, "%s/proc/kmsg", dest) >= 0) { + mount("/dev/null", where, "bind", MS_BIND, NULL); + free(where); + } + return r; } |