summaryrefslogtreecommitdiff
path: root/etc/etc.armish
diff options
context:
space:
mode:
authorJasper Lievisse Adriaanse <jasper@cvs.openbsd.org>2012-11-26 08:08:01 +0000
committerJasper Lievisse Adriaanse <jasper@cvs.openbsd.org>2012-11-26 08:08:01 +0000
commita15b57a1ca73cf9f6f4221a95d9a105ff2bef875 (patch)
treeacb45f404af0ab46661e3e6cef497358f636b4ea /etc/etc.armish
parent8b6e05fecf55c39937b31ae58e7ac35ef3657e6b (diff)
regen
Diffstat (limited to 'etc/etc.armish')
-rw-r--r--etc/etc.armish/MAKEDEV10
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/etc.armish/MAKEDEV b/etc/etc.armish/MAKEDEV
index 1b6b048b49a..77505b07ef8 100644
--- a/etc/etc.armish/MAKEDEV
+++ b/etc/etc.armish/MAKEDEV
@@ -5,7 +5,7 @@
#
# OpenBSD: etc.armish/MAKEDEV.md,v 1.25 2012/08/23 06:15:28 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.60 2012/08/23 06:15:28 deraadt Exp
-# OpenBSD: MAKEDEV.mi,v 1.80 2011/04/18 16:52:10 thib Exp
+# OpenBSD: MAKEDEV.mi,v 1.81 2012/11/05 08:07:09 jasper Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -184,19 +184,19 @@ M() {
mkl ${5-666} $1 $2 $3 $4
G=${6:-wheel}
[ "$7" ] && {
- MKlist[${#MKlist[*]}]=";chown $7:$G $1"
+ MKlist[${#MKlist[*]}]="&& chown $7:$G $1"
} || {
case $G in
wheel)
- [ ${#whlist[*]} = 0 ] && whlist[0]=";chgrp wheel"
+ [ ${#whlist[*]} = 0 ] && whlist[0]="&& chgrp wheel"
whlist[${#whlist[*]}]="$1"
;;
operator)
- [ ${#oplist[*]} = 0 ] && oplist[0]=";chgrp operator"
+ [ ${#oplist[*]} = 0 ] && oplist[0]="&& chgrp operator"
oplist[${#oplist[*]}]="$1"
;;
*)
- MKlist[${#MKlist[*]}]=";chgrp $G $1";
+ MKlist[${#MKlist[*]}]="&& chgrp $G $1";
esac
}
return 0