diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2012-11-26 08:08:01 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2012-11-26 08:08:01 +0000 |
commit | a15b57a1ca73cf9f6f4221a95d9a105ff2bef875 (patch) | |
tree | acb45f404af0ab46661e3e6cef497358f636b4ea /etc | |
parent | 8b6e05fecf55c39937b31ae58e7ac35ef3657e6b (diff) |
regen
Diffstat (limited to 'etc')
-rw-r--r-- | etc/etc.alpha/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.amd64/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.armish/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.aviion/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.beagle/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.hp300/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.hppa/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.hppa64/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.i386/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.landisk/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.loongson/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.luna88k/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.macppc/MAKEDEV | 12 | ||||
-rw-r--r-- | etc/etc.mvme68k/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.mvme88k/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.palm/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.sgi/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.socppc/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.sparc/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.sparc64/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.vax/MAKEDEV | 10 | ||||
-rw-r--r-- | etc/etc.zaurus/MAKEDEV | 10 |
22 files changed, 111 insertions, 111 deletions
diff --git a/etc/etc.alpha/MAKEDEV b/etc/etc.alpha/MAKEDEV index 95183eaae30..b361eccf313 100644 --- a/etc/etc.alpha/MAKEDEV +++ b/etc/etc.alpha/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.alpha/MAKEDEV.md,v 1.55 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 # # @@ -191,19 +191,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 diff --git a/etc/etc.amd64/MAKEDEV b/etc/etc.amd64/MAKEDEV index 0ba5681916a..6b5b605a41f 100644 --- a/etc/etc.amd64/MAKEDEV +++ b/etc/etc.amd64/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.amd64/MAKEDEV.md,v 1.48 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 # # @@ -197,19 +197,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 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 diff --git a/etc/etc.aviion/MAKEDEV b/etc/etc.aviion/MAKEDEV index 4c3c0f358c5..e4b2b6697c0 100644 --- a/etc/etc.aviion/MAKEDEV +++ b/etc/etc.aviion/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.aviion/MAKEDEV.md,v 1.15 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 # # @@ -156,19 +156,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 diff --git a/etc/etc.beagle/MAKEDEV b/etc/etc.beagle/MAKEDEV index 00b95f8236f..df7ab4f2ed0 100644 --- a/etc/etc.beagle/MAKEDEV +++ b/etc/etc.beagle/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.beagle/MAKEDEV.md,v 1.3 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 diff --git a/etc/etc.hp300/MAKEDEV b/etc/etc.hp300/MAKEDEV index d8ab4e68e4b..b811b7b57cb 100644 --- a/etc/etc.hp300/MAKEDEV +++ b/etc/etc.hp300/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.hp300/MAKEDEV.md,v 1.45 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 # # @@ -171,19 +171,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 diff --git a/etc/etc.hppa/MAKEDEV b/etc/etc.hppa/MAKEDEV index 3dc1699ce07..5147ff1043c 100644 --- a/etc/etc.hppa/MAKEDEV +++ b/etc/etc.hppa/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.hppa/MAKEDEV.md,v 1.48 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 # # @@ -182,19 +182,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 diff --git a/etc/etc.hppa64/MAKEDEV b/etc/etc.hppa64/MAKEDEV index 591d15485ba..e997b205d03 100644 --- a/etc/etc.hppa64/MAKEDEV +++ b/etc/etc.hppa64/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.hppa64/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 # # @@ -180,19 +180,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 diff --git a/etc/etc.i386/MAKEDEV b/etc/etc.i386/MAKEDEV index a4c56f0f75b..6b70cec980e 100644 --- a/etc/etc.i386/MAKEDEV +++ b/etc/etc.i386/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.i386/MAKEDEV.md,v 1.63 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 # # @@ -199,19 +199,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 diff --git a/etc/etc.landisk/MAKEDEV b/etc/etc.landisk/MAKEDEV index 16e3e93ba2b..50fee68df99 100644 --- a/etc/etc.landisk/MAKEDEV +++ b/etc/etc.landisk/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.landisk/MAKEDEV.md,v 1.27 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 # # @@ -180,19 +180,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 diff --git a/etc/etc.loongson/MAKEDEV b/etc/etc.loongson/MAKEDEV index f1f0348c805..10388386b6b 100644 --- a/etc/etc.loongson/MAKEDEV +++ b/etc/etc.loongson/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.loongson/MAKEDEV.md,v 1.13 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 # # @@ -178,19 +178,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 diff --git a/etc/etc.luna88k/MAKEDEV b/etc/etc.luna88k/MAKEDEV index 9a44be02acb..4f6ce0d1b2b 100644 --- a/etc/etc.luna88k/MAKEDEV +++ b/etc/etc.luna88k/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.luna88k/MAKEDEV.md,v 1.19 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 # # @@ -163,19 +163,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 diff --git a/etc/etc.macppc/MAKEDEV b/etc/etc.macppc/MAKEDEV index e00948926f1..01bce51da6d 100644 --- a/etc/etc.macppc/MAKEDEV +++ b/etc/etc.macppc/MAKEDEV @@ -3,9 +3,9 @@ # THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT. # generated from: # -# OpenBSD: etc.macppc/MAKEDEV.md,v 1.50 2012/08/23 06:15:28 deraadt Exp +# OpenBSD: etc.macppc/MAKEDEV.md,v 1.51 2012/09/08 17:18:22 mpi 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 # # @@ -189,19 +189,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 diff --git a/etc/etc.mvme68k/MAKEDEV b/etc/etc.mvme68k/MAKEDEV index 15ec95ce88e..4c531dac5a2 100644 --- a/etc/etc.mvme68k/MAKEDEV +++ b/etc/etc.mvme68k/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.mvme68k/MAKEDEV.md,v 1.32 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 # # @@ -166,19 +166,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 diff --git a/etc/etc.mvme88k/MAKEDEV b/etc/etc.mvme88k/MAKEDEV index 3a0246b074e..ae4c6929a59 100644 --- a/etc/etc.mvme88k/MAKEDEV +++ b/etc/etc.mvme88k/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.mvme88k/MAKEDEV.md,v 1.31 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 # # @@ -161,19 +161,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 diff --git a/etc/etc.palm/MAKEDEV b/etc/etc.palm/MAKEDEV index 4c53f6ec629..4b98df9f386 100644 --- a/etc/etc.palm/MAKEDEV +++ b/etc/etc.palm/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.palm/MAKEDEV.md,v 1.12 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 # # @@ -182,19 +182,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 diff --git a/etc/etc.sgi/MAKEDEV b/etc/etc.sgi/MAKEDEV index 7559f0237d1..0926788c54b 100644 --- a/etc/etc.sgi/MAKEDEV +++ b/etc/etc.sgi/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.sgi/MAKEDEV.md,v 1.37 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 # # @@ -177,19 +177,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 diff --git a/etc/etc.socppc/MAKEDEV b/etc/etc.socppc/MAKEDEV index d918325548d..c93fa79675a 100644 --- a/etc/etc.socppc/MAKEDEV +++ b/etc/etc.socppc/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.socppc/MAKEDEV.md,v 1.18 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 # # @@ -174,19 +174,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 diff --git a/etc/etc.sparc/MAKEDEV b/etc/etc.sparc/MAKEDEV index 71a1d9e0abc..c8f2dd79846 100644 --- a/etc/etc.sparc/MAKEDEV +++ b/etc/etc.sparc/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.sparc/MAKEDEV.md,v 1.50 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 # # @@ -178,19 +178,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 diff --git a/etc/etc.sparc64/MAKEDEV b/etc/etc.sparc64/MAKEDEV index 30c9a025122..13b0d673c19 100644 --- a/etc/etc.sparc64/MAKEDEV +++ b/etc/etc.sparc64/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.sparc64/MAKEDEV.md,v 1.68 2012/11/03 22:35:40 kettenis 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 # # @@ -195,19 +195,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 diff --git a/etc/etc.vax/MAKEDEV b/etc/etc.vax/MAKEDEV index 4d300078802..c61a78d7ac4 100644 --- a/etc/etc.vax/MAKEDEV +++ b/etc/etc.vax/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.vax/MAKEDEV.md,v 1.49 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 # # @@ -169,19 +169,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 diff --git a/etc/etc.zaurus/MAKEDEV b/etc/etc.zaurus/MAKEDEV index 4f8bbc9e424..1e1d3340f71 100644 --- a/etc/etc.zaurus/MAKEDEV +++ b/etc/etc.zaurus/MAKEDEV @@ -5,7 +5,7 @@ # # OpenBSD: etc.zaurus/MAKEDEV.md,v 1.31 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 # # @@ -182,19 +182,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 |