From 716f01a5be2342d0beea3918ca57f4d981cc0b2d Mon Sep 17 00:00:00 2001 From: KenwoodFox Date: Sat, 27 Nov 2021 14:23:02 -0500 Subject: [PATCH] Add readme: --- companion_software/dashboard/README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 companion_software/dashboard/README.md diff --git a/companion_software/dashboard/README.md b/companion_software/dashboard/README.md new file mode 100644 index 0000000..7ae23d1 --- /dev/null +++ b/companion_software/dashboard/README.md @@ -0,0 +1,22 @@ +Setting up getty override +========================= + +```console +systemctl edit getty@tty1.service +``` + +add + +``` +[Service] +ExecStart= +ExecStart=-/opt/lewis-crawker/companion_software/dashboard/entrypoint.sh +StandardInput=tty +StandardOutput=tty +``` + +then + +``` +systemctl daemon-reload; systemctl restart getty@tty1.service +```