Support possible failure on lx-branded zones

This commit is contained in:
Wyatt Preul 2016-12-03 14:28:07 -06:00
parent 949e6facb7
commit 657f02ed38
1 changed files with 3 additions and 0 deletions

View File

@ -116,6 +116,9 @@ int isolate_child() {
if (tcsetpgrp(STDIN_FILENO, getpgrp())) {
if (errno == ENOTTY) {
PRINT_DEBUG("tcsetpgrp failed: no tty (ok to proceed)")
} else if (errno == ENXIO) {
// can occur on lx-branded zones
PRINT_DEBUG("tcsetpgrp failed: no such device (ok to proceed");
} else {
PRINT_FATAL("tcsetpgrp failed: %s", strerror(errno));
return 1;