diff options
author | Juan RP <xtraeme@gmail.com> | 2014-09-20 09:41:49 +0200 |
---|---|---|
committer | Juan RP <xtraeme@gmail.com> | 2014-09-20 09:41:49 +0200 |
commit | 530f96ae0cb05676a64da2cb6f6a0341ed550d8a (patch) | |
tree | 50b8afc94f30332e618acf9963974e8c6345cd55 /services | |
parent | 80419bfd67563e92185a1a1636f99bf14f50db19 (diff) | |
download | runit-void-530f96ae0cb05676a64da2cb6f6a0341ed550d8a.tar.gz runit-void-530f96ae0cb05676a64da2cb6f6a0341ed550d8a.tar.xz runit-void-530f96ae0cb05676a64da2cb6f6a0341ed550d8a.zip |
services/agetty-*: make these work with busybox getty too.
Diffstat (limited to 'services')
-rwxr-xr-x | services/agetty-console/run | 7 | ||||
-rwxr-xr-x | services/agetty-generic/run | 9 | ||||
-rwxr-xr-x | services/agetty-tty1/run | 10 |
3 files changed, 23 insertions, 3 deletions
diff --git a/services/agetty-console/run b/services/agetty-console/run index 5a91e76..9fc6409 100755 --- a/services/agetty-console/run +++ b/services/agetty-console/run @@ -1,2 +1,7 @@ #!/bin/sh -exec agetty console linux +if [ -x /sbin/getty ]; then + GETTY=getty +elif [ -x /sbin/agetty ]; then + GETTY=agetty +fi +exec $GETTY console 38400 linux diff --git a/services/agetty-generic/run b/services/agetty-generic/run index 98cc190..9a34297 100755 --- a/services/agetty-generic/run +++ b/services/agetty-generic/run @@ -1,3 +1,10 @@ #!/bin/sh tty=${PWD##*-} -exec setsid agetty $tty linux +if [ -x /sbin/getty ]; then + # busybox + GETTY=getty +elif [ -x /sbin/agetty ]; then + # util-linux + GETTY=agetty +fi +exec setsid $GETTY $tty 38400 linux diff --git a/services/agetty-tty1/run b/services/agetty-tty1/run index 5c4dab1..dc01b10 100755 --- a/services/agetty-tty1/run +++ b/services/agetty-tty1/run @@ -1,3 +1,11 @@ #!/bin/sh tty=${PWD##*-} -exec setsid agetty $([ $tty = tty1 ] && echo --noclear) $tty linux +if [ -x /sbin/getty ]; then + # busybox + GETTY=getty +elif [ -x /sbin/agetty ]; then + # util-linux + GETTY=agetty + GETTY_ARGS="--noclear" +fi +exec setsid $GETTY $GETTY_ARGS $tty 38400 linux |