diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2000-03-22 07:34:32 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2000-03-22 07:34:32 +0000 |
commit | d3f7ada71eed6243454783c9db7585b45d4fb589 (patch) | |
tree | 057b3fd3abf1dad21b590e1b7b2717430824259d /etc/etc.mac68k/MAKEDEV | |
parent | 9f9f29b1da377f5235ab70174a518b401e0a4f8f (diff) |
operator should have perms to write and change tapes. ch* is still missing
in some MAKEDEVs, will see to them in a separate commit.
Diffstat (limited to 'etc/etc.mac68k/MAKEDEV')
-rw-r--r-- | etc/etc.mac68k/MAKEDEV | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/etc.mac68k/MAKEDEV b/etc/etc.mac68k/MAKEDEV index 9585e8df9e9..d27a0a8fd58 100644 --- a/etc/etc.mac68k/MAKEDEV +++ b/etc/etc.mac68k/MAKEDEV @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: MAKEDEV,v 1.30 1999/08/20 17:00:36 downsj Exp $ +# $OpenBSD: MAKEDEV,v 1.31 2000/03/22 07:34:29 niklas Exp $ # # Copyright (c) 1990 The Regents of the University of California. # All rights reserved. @@ -39,7 +39,6 @@ # fd* Floppy disk drives (3 1/2", 5 1/4") # sd* SCSI disks # cd* SCSI cdrom drives -# ch* SCSI media changer # vnd* "file" pseudo-disks # ccd* concatenated disk devices # @@ -56,6 +55,7 @@ # CyberVision 64 (grf5) # # Special purpose devices: +# ch* SCSI media changer # bpf* Berkeley Packet Filter # tun* network tunnel driver # lkm loadable kernel modules interface @@ -337,7 +337,7 @@ st*) e$name$unit en$name$unit \ r${name}${unit} nr${name}${unit} \ er${name}${unit} enr${name}${unit} - chmod 640 ${name}${unit} n${name}${unit} \ + chmod 660 ${name}${unit} n${name}${unit} \ e$name$unit en$name$unit \ r${name}${unit} nr${name}${unit} \ er${name}${unit} enr${name}${unit} @@ -359,7 +359,7 @@ ch*) 0|1|2|3|4|5|6) mknod ${name}${unit} c $chr $unit chown root.operator ${name}${unit} - chmod 640 ${name}${unit} + chmod 660 ${name}${unit} ;; *) echo bad unit for media changer in: $i |