console-getty.service 770 B

123456789101112131415161718192021222324252627282930
  1. # This file is part of systemd.
  2. #
  3. # systemd is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU Lesser General Public License as published by
  5. # the Free Software Foundation; either version 2.1 of the License, or
  6. # (at your option) any later version.
  7. [Unit]
  8. Description=Console Getty
  9. Documentation=man:agetty(8)
  10. After=systemd-user-sessions.service plymouth-quit-wait.service
  11. ConditionPathExists=/dev/console
  12. After=rc-local.service
  13. Before=getty.target
  14. [Service]
  15. ExecStart=-/sbin/agetty --noclear --keep-baud console 115200,38400,9600 $TERM
  16. Type=idle
  17. Restart=always
  18. RestartSec=0
  19. UtmpIdentifier=cons
  20. TTYPath=/dev/console
  21. TTYReset=yes
  22. TTYVHangup=yes
  23. KillMode=process
  24. IgnoreSIGPIPE=no
  25. SendSIGHUP=yes
  26. [Install]
  27. WantedBy=getty.target