diff options
Diffstat (limited to 'etc/MAKEDEV')
-rw-r--r-- | etc/MAKEDEV | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV index 0977480..2f5f210 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -103,7 +103,7 @@ # perfmon CPU performance-monitoring counters # pci PCI configuration-space access from user mode # -# $Id$ +# $Id: MAKEDEV,v 1.137 1997/03/03 16:13:35 bde Exp $ # PATH=/sbin:/bin/:/usr/bin:/usr/sbin:$PATH @@ -477,6 +477,7 @@ uk*) ;; worm*) + umask $disk_umask unit=`expr $i : 'worm\(.*\)'` if [ "X${unit}" = "X" ]; then unit=0 @@ -488,6 +489,8 @@ worm*) mknod ${name}${unit} b $blk ${unit} rm -f r${name}${unit} mknod r${name}${unit} c $chr ${unit} + chgrp operator ${name}${unit} r${name}${unit} + umask 077 rm -f r${name}${unit}.ctl mknod r${name}${unit}.ctl c $chr `expr $unit + $scsictl ` ;; |