about summary refs log tree commit diff
path: root/services
diff options
context:
space:
mode:
authorJuan RP <xtraeme@gmail.com>2014-09-20 09:41:49 +0200
committerJuan RP <xtraeme@gmail.com>2014-09-20 09:41:49 +0200
commit530f96ae0cb05676a64da2cb6f6a0341ed550d8a (patch)
tree50b8afc94f30332e618acf9963974e8c6345cd55 /services
parent80419bfd67563e92185a1a1636f99bf14f50db19 (diff)
downloadrunit-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-xservices/agetty-console/run7
-rwxr-xr-xservices/agetty-generic/run9
-rwxr-xr-xservices/agetty-tty1/run10
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