diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-12-14 18:24:06 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-12-14 18:24:06 +0000 |
commit | c54e568d42b2cca43e226be13626d9e9d3b6e087 (patch) | |
tree | 564492193faee3024cf1dabb206b81f2f17ee913 /etc/etc.pc532 | |
parent | 3de6837b3b1ef8cfadac52dc3494e5f7c0908288 (diff) |
/dev/fd should be owned by root.wheel
Diffstat (limited to 'etc/etc.pc532')
-rw-r--r-- | etc/etc.pc532/MAKEDEV | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/etc.pc532/MAKEDEV b/etc/etc.pc532/MAKEDEV index ea5f55280f9..4ae258fab8c 100644 --- a/etc/etc.pc532/MAKEDEV +++ b/etc/etc.pc532/MAKEDEV @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: MAKEDEV,v 1.8 1996/11/11 23:10:33 kstailey Exp $ +# $OpenBSD: MAKEDEV,v 1.9 1996/12/14 18:24:00 millert Exp $ # # Copyright (c) 1990 The Regents of the University of California. # All rights reserved. @@ -100,7 +100,7 @@ fd) (cd fd && eval `echo "" | awk ' BEGIN { \ for (i = 0; i < 64; i++) \ printf("mknod %d c 11 %d;", i, i)}'`) - chown -R bin.bin fd + chown -R root.wheel fd chmod 555 fd chmod 666 fd/* ;; |