diff options
author | peter <peter@FreeBSD.org> | 1998-03-27 04:35:10 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-03-27 04:35:10 +0000 |
commit | e16baaddc6756cfe1c23e1bf8622cac2c7d10193 (patch) | |
tree | 9901b106b4d000caa8d4a8768a7e8c03fd84b005 /etc/MAKEDEV | |
parent | a4f7d49acfeecf3cf607e8fcf47089a06868dee9 (diff) | |
download | FreeBSD-src-e16baaddc6756cfe1c23e1bf8622cac2c7d10193.zip FreeBSD-src-e16baaddc6756cfe1c23e1bf8622cac2c7d10193.tar.gz |
Hmm, silly me. I should have read what everything else was doing.
The initial/lock devices for cua are owned by uucp.dialer as well.
Also, remove redundant chmod on si_control
Diffstat (limited to 'etc/MAKEDEV')
-rw-r--r-- | etc/MAKEDEV | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV index e864814..b986cba 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -107,7 +107,7 @@ # pci PCI configuration-space access from user mode # ipl ipfilter control devices (ipl, ipnat, ipstate, ipauth) # -# $Id: MAKEDEV,v 1.161 1998/03/22 13:18:07 peter Exp $ +# $Id: MAKEDEV,v 1.162 1998/03/27 04:19:30 peter Exp $ # PATH=/sbin:/bin/:/usr/bin:/usr/sbin:$PATH @@ -817,7 +817,6 @@ ttyA*) done # For the user-mode control program, 'sicontrol' mknod si_control c 68 262144 - chmod 600 si_control ;; cuaA*) @@ -829,11 +828,9 @@ cuaA*) minor=`expr $port - 1` name=`expr $port + 1000 | cut -c 3-4` mknod cuaA$name c $major `expr $minor + 128` - chown uucp.dialer cuaA$name - umask 77 mknod cuaiA$name c $major `expr $minor + 128 + 65536` mknod cualA$name c $major `expr $minor + 128 + 131072` - umask 7 + chown uucp.dialer cuaA$name cuaiA$name cualA$name port=`expr $port + 1` done umask 77 |