docs: Fix debug console for ubuntu/debian

Change the debug console systemd job to specify the path to bash as
`/bin/bash`, *not* `/usr/bin/bash`. This unbreaks the debug console for
Ubuntu and Debian and also works for all other distros.

Fixes #410.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt 2019-03-22 13:13:47 +00:00
parent 072acea2a0
commit 4c19083e01

View File

@ -657,7 +657,7 @@ StandardOutput=tty
# Must be disabled to allow the job to access the real console # Must be disabled to allow the job to access the real console
PrivateDevices=no PrivateDevices=no
Type=simple Type=simple
ExecStart=/usr/bin/bash ExecStart=/bin/bash
Restart=always Restart=always
EOT EOT
``` ```