Skip to content

Commit

Permalink
docs: Fix debug console for ubuntu/debian
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
jodh-intel committed Mar 22, 2019
1 parent 072acea commit 4c19083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Developer-Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down

0 comments on commit 4c19083

Please sign in to comment.