Fix ownership of tty devices.
This commit is contained in:
parent
05a7ffd00c
commit
978788da57
|
@ -20,7 +20,7 @@
|
|||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
||||
#
|
||||
# from: @(#)MAKEDEV 5.2 (Berkeley) 6/22/90
|
||||
# $Id: MAKEDEV,v 1.4 1994/02/19 15:54:23 briggs Exp $
|
||||
# $Id: MAKEDEV,v 1.5 1994/05/05 03:48:52 briggs Exp $
|
||||
#
|
||||
# Device "make" file. Valid arguments:
|
||||
# std standard devices
|
||||
|
@ -117,6 +117,7 @@ tty*)
|
|||
unit=`expr $i : 'tty\(.*\)'`
|
||||
rm -f tty$unit
|
||||
mknod tty$unit c 12 $unit
|
||||
chown uucp.wheel tty$unit
|
||||
;;
|
||||
|
||||
pty*)
|
||||
|
|
Loading…
Reference in New Issue