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.pmax | |
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.pmax')
-rw-r--r-- | etc/etc.pmax/MAKEDEV | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/etc.pmax/MAKEDEV b/etc/etc.pmax/MAKEDEV index 98372d70533..ffa5f814aba 100644 --- a/etc/etc.pmax/MAKEDEV +++ b/etc/etc.pmax/MAKEDEV @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: MAKEDEV,v 1.33 1999/10/07 11:18:10 maja Exp $ +# $OpenBSD: MAKEDEV,v 1.34 2000/03/22 07:34:29 niklas Exp $ # @(#)MAKEDEV 8.1 (Berkeley) 6/9/93 # @@ -162,7 +162,8 @@ tz*) mknod nrmt$unit c $chr $unit1 mknod rmth$unit c $chr $unit2 mknod nrmth$unit c $chr $unit3 - chmod 666 rmt$unit nrmt$unit rmth$unit nrmth$unit + chown root.operator rmt$unit nrmt$unit rmth$unit nrmth$unit + chmod 660 rmt$unit nrmt$unit rmth$unit nrmth$unit ;; *) echo bad unit for tape in: $1 |