From 4c19083e013df78e00ff006a67d404913fbc084c Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Fri, 22 Mar 2019 13:13:47 +0000 Subject: [PATCH] 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 --- Developer-Guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Developer-Guide.md b/Developer-Guide.md index d597ad066c..53309af926 100644 --- a/Developer-Guide.md +++ b/Developer-Guide.md @@ -657,7 +657,7 @@ StandardOutput=tty # Must be disabled to allow the job to access the real console PrivateDevices=no Type=simple -ExecStart=/usr/bin/bash +ExecStart=/bin/bash Restart=always EOT ```