From 885fca3fc29afa2f0b90c1fadc5a342a8ae38a27 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Wed, 5 May 2021 18:41:40 +0200 Subject: [PATCH 1/1] shutdown_console(): Make umount commands work. Oops. we unmounted /dev/tty1 several times rather than looping over all ttys. --- micoforia.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/micoforia.c b/micoforia.c index 4d267ec..d5f300e 100644 --- a/micoforia.c +++ b/micoforia.c @@ -943,7 +943,7 @@ static void shutdown_console(struct container_runtime *cr) char *console; for (n = 0; n < cr->num_ttys; n++) { - char *tty = msg("%s/tty1", cr->dev); + char *tty = msg("%s/tty%u", cr->dev, n); if (umount2(tty, MNT_DETACH) < 0) DEBUG_LOG("umount %s: %m\n", tty); free(tty); -- 2.39.2