diff options
author | rwatson <rwatson@FreeBSD.org> | 2002-12-31 16:45:47 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2002-12-31 16:45:47 +0000 |
commit | 3a7029ba891d1b594bb164c5cb75b2726c591827 (patch) | |
tree | 2cb42bb1fa6457ce2c0c5661feb16892abb1c61c /etc | |
parent | dd124d957c8609b05f27e8f3bfcfa3fdb6b4bab9 (diff) | |
download | FreeBSD-src-3a7029ba891d1b594bb164c5cb75b2726c591827.zip FreeBSD-src-3a7029ba891d1b594bb164c5cb75b2726c591827.tar.gz |
Further sync to kernel make_dev(): since we don't provide group access
to /dev/raidctl, don't set the group to operator. (This isn't a
storage device, it's a control device).
Also, since umask here is already restrictive, we don't need to
explicitly set the mode.
Submitted by: bde
Diffstat (limited to 'etc')
-rw-r--r-- | etc/MAKEDEV | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV index 40de85e..232b2e7 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -447,7 +447,7 @@ wt*) ;; raidctl) - mknod raidctl c 201 0 root:operator; chmod 0600 raidctl + mknod raidctl c 201 0 ;; # Individual slices. |