Support possible failure on lx-branded zones

pull/64/head
Wyatt Preul 8 years ago
parent 949e6facb7
commit 657f02ed38
  1. 3
      src/tini.c

@ -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;

Loading…
Cancel
Save