diff options
author | Alain Kalker <a.c.kalker@gmail.com> | 2016-09-29 19:21:35 +0200 |
---|---|---|
committer | Alain Kalker <a.c.kalker@gmail.com> | 2016-09-29 19:21:35 +0200 |
commit | 35921bd9096e6fa030fb8387f055c99c9f75a772 (patch) | |
tree | f6b0e4c68fa416ab986d6166e332811a04cb5930 | |
parent | 24df16b0f709f5217405e603e2c304c54592a632 (diff) | |
download | runit-void-35921bd9096e6fa030fb8387f055c99c9f75a772.tar.gz runit-void-35921bd9096e6fa030fb8387f055c99c9f75a772.tar.xz runit-void-35921bd9096e6fa030fb8387f055c99c9f75a772.zip |
Fix another always succeeding test
-rw-r--r-- | services/agetty-tty1/conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/agetty-tty1/conf b/services/agetty-tty1/conf index fee6d06..b9b33c2 100644 --- a/services/agetty-tty1/conf +++ b/services/agetty-tty1/conf @@ -1,4 +1,4 @@ -if [ -x /sbin/agetty -o /bin/agetty ]; then +if [ -x /sbin/agetty -o -x /bin/agetty ]; then # util-linux specific settings if [ "${tty}" = "tty1" ]; then GETTY_ARGS="--noclear" |