X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshutdown.c;h=52bad21971f810ebceeee85ef2ac908d0c83e640;hb=39c2a6f19301c0042142149fdaa34a5f8cf71c0e;hp=0905ef5b3a96ab5523d9aa5a26db1814e1f64085;hpb=3b8a1f3fee7bf83af5bbae541166508cf172b67c;p=elogind.git diff --git a/src/shutdown.c b/src/shutdown.c index 0905ef5b3..52bad2197 100644 --- a/src/shutdown.c +++ b/src/shutdown.c @@ -276,6 +276,10 @@ static int pivot_to_new_root(void) { log_error("Failed to open /dev/console: %m"); else { make_stdio(fd); + + /* Initialize the controlling terminal */ + setsid(); + ioctl(STDIN_FILENO, TIOCSCTTY, NULL); } return 0; @@ -380,9 +384,12 @@ int main(int argc, char *argv[]) { log_error("Failed to detach DM devices: %s", strerror(-r)); } - if (!need_umount && !need_swapoff && !need_loop_detach && !need_dm_detach) + if (!need_umount && !need_swapoff && !need_loop_detach && !need_dm_detach) { + if (retries > 0) + log_info("All filesystems, swaps, loop devices, DM devices detached."); /* Yay, done */ break; + } /* If in this iteration we didn't manage to * unmount/deactivate anything, we either kill more