mirror of https://github.com/fairyglade/ly.git
Fix error, TTY was printing tty'2' instead of tty2
This commit is contained in:
parent
2335ab317d
commit
3641a6b615
|
|
@ -24,7 +24,7 @@ CONFTTY=$(cat /etc/ly/config.ini | sed -n 's/^tty.*=[^1-9]*// p')
|
||||||
|
|
||||||
## The execution vars
|
## The execution vars
|
||||||
# If CONFTTY is empty then default to 2
|
# If CONFTTY is empty then default to 2
|
||||||
TTY="tty${CONFTTY:-'2'}"
|
TTY="tty${CONFTTY:-2}"
|
||||||
TERM=linux
|
TERM=linux
|
||||||
BAUD=38400
|
BAUD=38400
|
||||||
# If we don't have getty then we should have agetty
|
# If we don't have getty then we should have agetty
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue