summary refs log tree commit diff
path: root/services/agetty-generic/run
diff options
context:
space:
mode:
Diffstat (limited to 'services/agetty-generic/run')
-rwxr-xr-xservices/agetty-generic/run4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/agetty-generic/run b/services/agetty-generic/run
index 1e6c2bd..af36daa 100755
--- a/services/agetty-generic/run
+++ b/services/agetty-generic/run
@@ -4,10 +4,10 @@ tty=${PWD##*-}
 
 [ -r conf ] && . ./conf
 
-if [ -x /sbin/getty ]; then
+if [ -x /sbin/getty -o -x /bin/getty ]; then
 	# busybox
 	GETTY=getty
-elif [ -x /sbin/agetty ]; then
+elif [ -x /sbin/agetty -o -x /bin/agetty ]; then
 	# util-linux
 	GETTY=agetty
 fi