diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-30 09:37:35 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-30 09:37:35 +0000 |
commit | 186322730aa9b7b1dd126071d0b5afdcf70a1297 (patch) | |
tree | 789ee46b19e5046588cf5afefbdbd6894418a941 | |
parent | f345fe14aab7ab69dfed45a4d8f8e477d66959f5 (diff) |
use kbd command on /etc/kbdtype if applicable
-rw-r--r-- | etc/rc | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.11 1996/05/26 10:25:27 deraadt Exp $ +# $OpenBSD: rc,v 1.12 1996/05/30 09:37:34 deraadt Exp $ # System startup script run by init on autoboot # or after single-user. @@ -270,5 +270,9 @@ echo '.' . /etc/rc.local +if [ -f /sbin/kbd -a -f /etc/kbdtype ]; then + kbd `cat /etc/kbdtype` +fi + date exit 0 |