chiark / gitweb /
umask: change default umask to 0022 just to be sure, and set it explicitly in all...
[elogind.git] / src / getty-generator.c
index 141402bd15b8f6b08f741fe0a06a5b53731fde59..b8228e98223f83506a54019f427389f46a18f959 100644 (file)
@@ -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,7 +117,7 @@ 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;
@@ -123,7 +125,7 @@ int main(int argc, char *argv[]) {
         }
 
         if (access("/sys/class/tty/xvc0", F_OK) == 0) {
-                log_debug("Automatic adding serial getty for xvc0.");
+                log_debug("Automatically adding serial getty for xvc0.");
 
                 if (add_symlink("serial-getty@.service", "serial-getty@xvc0.service") < 0)
                         r = EXIT_FAILURE;