From ed061a8dc2acd93c2eb569d2d983d5a77f7e5b77 Mon Sep 17 00:00:00 2001 From: Michal Schmidt Date: Thu, 7 Jun 2012 16:03:33 +0200 Subject: units: add systemd-debug-shell.service If enabled, the service provides a root shell from an early boot. It also remains active late into shutdown. It is useful for debugging startup and shutdown problems. This is the unit referenced in http://freedesktop.org/wiki/Software/systemd/Debugging#early_debug_shell --- units/systemd-debug-shell.service.in | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 units/systemd-debug-shell.service.in (limited to 'units') diff --git a/units/systemd-debug-shell.service.in b/units/systemd-debug-shell.service.in new file mode 100644 index 0000000000..70c01c21f6 --- /dev/null +++ b/units/systemd-debug-shell.service.in @@ -0,0 +1,25 @@ +[Unit] +Description=Early root shell on tty9 FOR DEBUGGING ONLY +DefaultDependencies=no +IgnoreOnIsolate=yes + +[Service] +Environment=TERM=linux +ExecStart=@sushell@ +Restart=always +RestartSec=0 +StandardInput=tty +TTYPath=/dev/tty9 +TTYReset=yes +TTYVHangup=yes +KillMode=process +IgnoreSIGPIPE=no +# bash ignores SIGTERM +KillSignal=SIGHUP + +# Unset locale for the console getty since the console has problems +# displaying some internationalized messages. +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= + +[Install] +WantedBy=sysinit.target -- cgit v1.2.3-54-g00ecf