summaryrefslogtreecommitdiff
path: root/etc/etc.pmax/MAKEDEV
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-09-18 22:03:50 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-09-18 22:03:50 +0000
commitf85e57442446ff132062ad5cfe43d063ecf4f568 (patch)
treece94c18bff25ad9f6f9fb5f8bdd73387f96537b7 /etc/etc.pmax/MAKEDEV
parenta9489992f2541f0d53c2261a52249ed5984b9b0d (diff)
do not use chgrp
Diffstat (limited to 'etc/etc.pmax/MAKEDEV')
-rw-r--r--etc/etc.pmax/MAKEDEV10
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/etc.pmax/MAKEDEV b/etc/etc.pmax/MAKEDEV
index 6076f734647..9363659932e 100644
--- a/etc/etc.pmax/MAKEDEV
+++ b/etc/etc.pmax/MAKEDEV
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: MAKEDEV,v 1.6 1996/08/28 08:55:27 deraadt Exp $
+# $OpenBSD: MAKEDEV,v 1.7 1996/09/18 22:03:46 deraadt Exp $
# @(#)MAKEDEV 8.1 (Berkeley) 6/9/93
#
@@ -40,9 +40,9 @@ case $i in
std)
mknod console c 0 0
- mknod drum c 1 0 ; chmod 640 drum ; chgrp kmem drum
- mknod kmem c 3 1 ; chmod 640 kmem ; chgrp kmem kmem
- mknod mem c 3 0 ; chmod 640 mem ; chgrp kmem mem
+ mknod drum c 1 0 ; chmod 640 drum ; chown root.kmem drum
+ mknod kmem c 3 1 ; chmod 640 kmem ; chown root.kmem kmem
+ mknod mem c 3 0 ; chmod 640 mem ; chown root.kmem mem
mknod null c 3 2 ; chmod 666 null
mknod zero c 3 12 ; chmod 666 zero
mknod tty c 2 0 ; chmod 666 tty
@@ -138,7 +138,7 @@ rz*|vnd*|vn*|ccd*)
mknod r${name}${unit}g c $chr `expr $unit '*' 8 + 6`
mknod r${name}${unit}h c $chr `expr $unit '*' 8 + 7`
fi
- chgrp operator ${name}${unit}[a-h] r${name}${unit}[a-h]
+ chown root.operator ${name}${unit}[a-h] r${name}${unit}[a-h]
chmod 640 ${name}${unit}[a-h] r${name}${unit}[a-h]
;;
*)