debug-shell.service 1008 B

12345678910111213141516171819202122232425262728293031323334
  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=Early root shell on /dev/tty9 FOR DEBUGGING ONLY
  9. Documentation=man:sushell(8)
  10. DefaultDependencies=no
  11. IgnoreOnIsolate=yes
  12. ConditionPathExists=/dev/tty9
  13. [Service]
  14. Environment=TERM=linux
  15. ExecStart=/bin/sh
  16. Restart=always
  17. RestartSec=0
  18. StandardInput=tty
  19. TTYPath=/dev/tty9
  20. TTYReset=yes
  21. TTYVHangup=yes
  22. KillMode=process
  23. IgnoreSIGPIPE=no
  24. # bash ignores SIGTERM
  25. KillSignal=SIGHUP
  26. # Unset locale for the console getty since the console has problems
  27. # displaying some internationalized messages.
  28. Environment=LANG= LANGUAGE= LC_CTYPE= LC_NUMERIC= LC_TIME= LC_COLLATE= LC_MONETARY= LC_MESSAGES= LC_PAPER= LC_NAME= LC_ADDRESS= LC_TELEPHONE= LC_MEASUREMENT= LC_IDENTIFICATION=
  29. [Install]
  30. WantedBy=sysinit.target