summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Redaelli <drizzt@gentoo.org>2009-02-24 17:43:07 +0000
committerTimothy Redaelli <drizzt@gentoo.org>2009-02-24 17:43:07 +0000
commit3797e60d54e049d0179e9501b5aff653348eba9d (patch)
tree0fc19a5535b96fe4dd1f5e605a512f9ae2d60a2c /sys-freebsd/freebsd-usbin/files
parentFix devd.initd (diff)
downloadgentoo-2-3797e60d54e049d0179e9501b5aff653348eba9d.tar.gz
gentoo-2-3797e60d54e049d0179e9501b5aff653348eba9d.tar.bz2
gentoo-2-3797e60d54e049d0179e9501b5aff653348eba9d.zip
Fix bashism
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'sys-freebsd/freebsd-usbin/files')
-rwxr-xr-xsys-freebsd/freebsd-usbin/files/syscons.initd4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-freebsd/freebsd-usbin/files/syscons.initd b/sys-freebsd/freebsd-usbin/files/syscons.initd
index 320b870d2ece..f84b9ed2f635 100755
--- a/sys-freebsd/freebsd-usbin/files/syscons.initd
+++ b/sys-freebsd/freebsd-usbin/files/syscons.initd
@@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-usbin/files/syscons.initd,v 1.3 2007/02/23 14:03:08 uberlord Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-usbin/files/syscons.initd,v 1.4 2009/02/24 17:43:07 drizzt Exp $
depend() {
need localmount
@@ -70,7 +70,7 @@ start() {
if [ -n "${KBDFLAGS}" ]; then
einfo "Setting keyboard flags for all screens"
for ttyv in /dev/ttyv*; do
- kbdcontrol ${KBDFLAGS} <${ttyv} &>${ttyv}
+ kbdcontrol ${KBDFLAGS} <${ttyv} >${ttyv} 2>&1
done
fi