X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fgetty-generator.c;h=b8228e98223f83506a54019f427389f46a18f959;hb=14e639ae7a1dbf156273ce697d30fbc6c6594209;hp=683775a4d50615be3af32159ef01aa478a06115d;hpb=6f9a471aa677ff4048aea168d7cea3697cf51fb3;p=elogind.git diff --git a/src/getty-generator.c b/src/getty-generator.c index 683775a4d..b8228e982 100644 --- a/src/getty-generator.c +++ b/src/getty-generator.c @@ -73,6 +73,8 @@ int main(int argc, char *argv[]) { log_parse_environment(); log_open(); + umask(0022); + if (detect_container(NULL) > 0) { log_debug("Automatic adding console shell."); @@ -115,10 +117,18 @@ int main(int argc, char *argv[]) { /* Automatically add in a serial getty on the first * virtualizer console */ if (access("/sys/class/tty/hvc0", F_OK) == 0) { - log_debug("Automatic adding serial getty for hvc0."); + log_debug("Automatically adding serial getty for hvc0."); if (add_symlink("serial-getty@.service", "serial-getty@hvc0.service") < 0) r = EXIT_FAILURE; + + } + + if (access("/sys/class/tty/xvc0", F_OK) == 0) { + log_debug("Automatically adding serial getty for xvc0."); + + if (add_symlink("serial-getty@.service", "serial-getty@xvc0.service") < 0) + r = EXIT_FAILURE; } finish: