summaryrefslogtreecommitdiff
path: root/etc/etc.mvme68k
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.mvme68k
parenta9489992f2541f0d53c2261a52249ed5984b9b0d (diff)
do not use chgrp
Diffstat (limited to 'etc/etc.mvme68k')
-rw-r--r--etc/etc.mvme68k/MAKEDEV26
1 files changed, 13 insertions, 13 deletions
diff --git a/etc/etc.mvme68k/MAKEDEV b/etc/etc.mvme68k/MAKEDEV
index b05459b3906..acdf17af425 100644
--- a/etc/etc.mvme68k/MAKEDEV
+++ b/etc/etc.mvme68k/MAKEDEV
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: MAKEDEV,v 1.10 1996/08/28 08:55:25 deraadt Exp $
+# $OpenBSD: MAKEDEV,v 1.11 1996/09/18 22:03:44 deraadt Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
# All rights reserved.
@@ -33,7 +33,7 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
-# $Id: MAKEDEV,v 1.10 1996/08/28 08:55:25 deraadt Exp $
+# $Id: MAKEDEV,v 1.11 1996/09/18 22:03:44 deraadt Exp $
#
# Device "make" file. Valid arguments:
# all makes all known devices, including local devices,
@@ -99,9 +99,9 @@ std)
rm -f console drum kmem mem null zero tty
rm -f klog stdin stdout stderr
mknod console c 0 0
- mknod drum c 3 0 ; chmod 640 drum ; chgrp kmem drum
- mknod kmem c 2 1 ; chmod 640 kmem ; chgrp kmem kmem
- mknod mem c 2 0 ; chmod 640 mem ; chgrp kmem mem
+ mknod drum c 3 0 ; chmod 640 drum ; chown root.kmem drum
+ mknod kmem c 2 1 ; chmod 640 kmem ; chown root.kmem kmem
+ mknod mem c 2 0 ; chmod 640 mem ; chown root.kmem mem
mknod zero c 2 12 ; chmod 666 zero
mknod null c 2 2 ; chmod 666 null
mknod tty c 1 0 ; chmod 666 tty
@@ -139,7 +139,7 @@ st*)
mknod nr${name}${unit} c $chr `expr $unit '*' 16 + 1`
mknod er${name}${unit} c $chr `expr $unit '*' 16 + 2`
mknod enr${name}${unit} c $chr `expr $unit '*' 16 + 3`
- chgrp operator ${name}${unit} n${name}${unit} \
+ chown root.operator ${name}${unit} n${name}${unit} \
e$name$unit en$name$unit \
r${name}${unit} nr${name}${unit} \
er${name}${unit} enr${name}${unit}
@@ -200,7 +200,7 @@ sd*|vnd*|ccd*)
mknod r${name}${unit}o c $chr `expr $unit '*' 16 + 14`
mknod r${name}${unit}p c $chr `expr $unit '*' 16 + 15`
fi
- chgrp operator ${name}${unit}[a-p] r${name}${unit}[a-p]
+ chown root.operator ${name}${unit}[a-p] r${name}${unit}[a-p]
chmod 640 ${name}${unit}[a-p] r${name}${unit}[a-p]
;;
*)
@@ -222,7 +222,7 @@ cd*)
mknod ${name}${unit}c b $blk `expr $unit '*' 8 + 2`
mknod r${name}${unit}a c $chr `expr $unit '*' 8 + 0`
mknod r${name}${unit}c c $chr `expr $unit '*' 8 + 2`
- 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]
;;
*)
@@ -242,7 +242,7 @@ tty0*|ttya|ttyb|ttyc|ttyd)
rm -f tty0${unit} cua0${unit}
mknod tty0${unit} c 13 ${unit}
mknod cua0${unit} c 13 `expr 128 + ${unit}`
- chown uucp:wheel tty0${unit} cua0${unit}
+ chown uucp.wheel tty0${unit} cua0${unit}
;;
*)
echo bad unit for tty0 in: $i
@@ -255,7 +255,7 @@ tty0*|ttya|ttyb|ttyc|ttyd)
rm -f tty${unit} cua${unit}
mknod tty${unit} c 12 ${num}
mknod cua${unit} c 12 `expr 128 + ${num}`
- chown uucp:wheel tty${unit} cua${unit}
+ chown uucp.wheel tty${unit} cua${unit}
;;
*)
echo bad type for tty in: $i
@@ -325,14 +325,14 @@ rd*)
mknod rd$unit b 9 $unit
# mknod rrd$unit b ??? `expr $unit + 16`
mknod rd${unit}c b 9 `expr $unit + 16`
- chgrp operator rd$unit rd${unit}c
+ chown root.operator rd$unit rd${unit}c
chmod 640 rd$unit rd${unit}c
;;
lkm)
rm -f lkm
mknod lkm c 24 0
- chown root:kmem lkm
+ chown root.kmem lkm
chmod 640 lkm
;;
@@ -346,7 +346,7 @@ sram*|nvram*|flash*|vmel*|vmes*)
vmes*) maj=32;;
esac
mknod $i c ${maj} 0
- chown root:kmem $i
+ chown root.kmem $i
chmod 640 $i
;;