23 lines
324 B
Markdown
23 lines
324 B
Markdown
Setting up getty override
|
|
=========================
|
|
|
|
```console
|
|
systemctl edit getty@tty1.service
|
|
```
|
|
|
|
add
|
|
|
|
```
|
|
[Service]
|
|
ExecStart=
|
|
ExecStart=-/opt/lewis-crawler/companion_software/dashboard/entrypoint.sh
|
|
StandardInput=tty
|
|
StandardOutput=tty
|
|
```
|
|
|
|
then
|
|
|
|
```
|
|
systemctl daemon-reload; systemctl restart getty@tty1.service
|
|
```
|