mirror of
https://github.com/fairyglade/ly.git
synced 2025-12-20 19:24:53 +00:00
* Make it easy to install ly on runit systems e.g. void * Tidy up runit section in readme Co-authored-by: Daniel Haarhoff <daniel@rknt.de>
14 lines
240 B
Plaintext
14 lines
240 B
Plaintext
if [ -x /sbin/agetty -o -x /bin/agetty ]; then
|
|
# util-linux specific settings
|
|
if [ "${tty}" = "tty1" ]; then
|
|
GETTY_ARGS="--noclear"
|
|
fi
|
|
fi
|
|
|
|
BAUD_RATE=38400
|
|
TERM_NAME=linux
|
|
|
|
StandardInput=tty
|
|
TTYPath=/dev/tty2
|
|
TTYReset=yes
|
|
TTYVHangup=yes |