summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpattonme <pattonme@cvs.openbsd.org>1998-09-15 10:23:24 +0000
committerpattonme <pattonme@cvs.openbsd.org>1998-09-15 10:23:24 +0000
commit7e8a980818320d7911c4411f049eb2532f4ea2bf (patch)
tree09b220ddba854fc76c5736b56b7bb578eb8e207c
parent293b5cb85ee7288a64c8f38db5da2d1c5e2e8ede (diff)
Added definition for ipauth, a new piece for IPFilter v3.2.9
-rw-r--r--etc/etc.alpha/MAKEDEV7
-rw-r--r--etc/etc.amiga/MAKEDEV7
-rw-r--r--etc/etc.arc/MAKEDEV8
-rw-r--r--etc/etc.hp300/MAKEDEV7
-rw-r--r--etc/etc.mac68k/MAKEDEV7
-rw-r--r--etc/etc.mvme68k/MAKEDEV9
-rw-r--r--etc/etc.pc532/MAKEDEV7
-rw-r--r--etc/etc.pmax/MAKEDEV7
-rw-r--r--etc/etc.sparc/MAKEDEV7
-rw-r--r--etc/etc.sun3/MAKEDEV4
-rw-r--r--etc/etc.vax/MAKEDEV7
11 files changed, 45 insertions, 32 deletions
diff --git a/etc/etc.alpha/MAKEDEV b/etc/etc.alpha/MAKEDEV
index 95fb723434b..1995dde49d8 100644
--- a/etc/etc.alpha/MAKEDEV
+++ b/etc/etc.alpha/MAKEDEV
@@ -1,5 +1,5 @@
#!/bin/sh -
-# $OpenBSD: MAKEDEV,v 1.35 1998/08/24 05:49:48 millert Exp $
+# $OpenBSD: MAKEDEV,v 1.36 1998/09/15 10:23:21 pattonme Exp $
# $NetBSD: MAKEDEV,v 1.8.4.1 1996/06/18 00:41:56 cgd Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
@@ -407,11 +407,12 @@ random|srandom|urandom|prandom|arandom)
;;
ipl)
- rm -f ipl ipnat ipstate
+ rm -f ipl ipnat ipstate ipauth
mknod ipl c 35 0
mknod ipnat c 35 1
mknod ipstate c 35 2
- chown root.wheel ipl ipnat ipstate
+ mknod ipauth c 35 3
+ chown root.wheel ipl ipnat ipstate ipauth
;;
uk*)
diff --git a/etc/etc.amiga/MAKEDEV b/etc/etc.amiga/MAKEDEV
index a52d2983ebd..70f9247f67c 100644
--- a/etc/etc.amiga/MAKEDEV
+++ b/etc/etc.amiga/MAKEDEV
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: MAKEDEV,v 1.35 1998/08/24 05:49:55 millert Exp $
+# $OpenBSD: MAKEDEV,v 1.36 1998/09/15 10:23:21 pattonme Exp $
# $NetBSD: MAKEDEV,v 1.21 1996/05/19 21:03:49 veego Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
@@ -528,11 +528,12 @@ lpt*|lpa*)
;;
ipl)
- rm -f ipl ipnat ipstate
+ rm -f ipl ipnat ipstate ipauth
mknod ipl c 34 0
mknod ipnat c 34 1
mknod ipstate c 34 2
- chown root.wheel ipl ipnat ipstate
+ mknod ipauth c 34 3
+ chown root.wheel ipl ipnat ipstate ipauth
;;
tun*)
diff --git a/etc/etc.arc/MAKEDEV b/etc/etc.arc/MAKEDEV
index 0ee293abb09..b71beb4c575 100644
--- a/etc/etc.arc/MAKEDEV
+++ b/etc/etc.arc/MAKEDEV
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: MAKEDEV,v 1.25 1998/09/11 16:21:04 millert Exp $
+# $OpenBSD: MAKEDEV,v 1.26 1998/09/15 10:23:22 pattonme Exp $
# @(#)MAKEDEV 8.1 (Berkeley) 6/9/93
#
@@ -104,6 +104,7 @@ std)
mknod stdin c 7 0 ; chmod 666 stdin
mknod stdout c 7 1 ; chmod 666 stdout
mknod stderr c 7 2 ; chmod 666 stderr
+ mknod ksyms c 35 0 ; chmod 640 ksyms ; chown root.kmem ksyms
;;
ttyC*)
@@ -179,11 +180,12 @@ bpf*|tun*)
;;
ipl)
- rm -f ipl ipnat ipstate
+ rm -f ipl ipnat ipstate ipauth
mknod ipl c 31 0
mknod ipnat c 31 1
mknod ipstate c 31 2
- chown root.wheel ipl ipnat ipstate
+ mknod ipauth c 31 3
+ chown root.wheel ipl ipnat ipstate ipauth
;;
rd*)
diff --git a/etc/etc.hp300/MAKEDEV b/etc/etc.hp300/MAKEDEV
index 878b11d521d..58975bca91d 100644
--- a/etc/etc.hp300/MAKEDEV
+++ b/etc/etc.hp300/MAKEDEV
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: MAKEDEV,v 1.26 1998/08/24 05:49:51 millert Exp $
+# $OpenBSD: MAKEDEV,v 1.27 1998/09/15 10:23:22 pattonme Exp $
# $NetBSD: MAKEDEV,v 1.12 1995/11/05 23:50:22 thorpej Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
@@ -185,11 +185,12 @@ bpf*)
;;
ipl)
- rm -f ipl ipnat ipstate
+ rm -f ipl ipnat ipstate ipauth
mknod ipl c 33 0
mknod ipnat c 33 1
mknod ipstate c 33 2
- chown root.wheel ipl ipnat ipstate
+ mknod ipauth c 33 3
+ chown root.wheel ipl ipnat ipstate ipauth
;;
tun*)
diff --git a/etc/etc.mac68k/MAKEDEV b/etc/etc.mac68k/MAKEDEV
index df28989e054..1b7bc32261a 100644
--- a/etc/etc.mac68k/MAKEDEV
+++ b/etc/etc.mac68k/MAKEDEV
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: MAKEDEV,v 1.23 1998/01/26 04:19:42 dgregor Exp $
+# $OpenBSD: MAKEDEV,v 1.24 1998/09/15 10:23:22 pattonme Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
# All rights reserved.
@@ -366,11 +366,12 @@ bpf*)
;;
ipl)
- rm -f ipl ipnat ipstate
+ rm -f ipl ipnat ipstate ipauth
mknod ipl c 35 0
mknod ipnat c 35 1
mknod ipstate c 35 2
- chown root.wheel ipl ipnat ipstate
+ mknod ipauth c 35 3
+ chown root.wheel ipl ipnat ipstate ipauth
;;
tun*)
diff --git a/etc/etc.mvme68k/MAKEDEV b/etc/etc.mvme68k/MAKEDEV
index c2d891ddea3..926bc2ccb0b 100644
--- a/etc/etc.mvme68k/MAKEDEV
+++ b/etc/etc.mvme68k/MAKEDEV
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: MAKEDEV,v 1.23 1998/08/24 05:49:54 millert Exp $
+# $OpenBSD: MAKEDEV,v 1.24 1998/09/15 10:23:22 pattonme 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.23 1998/08/24 05:49:54 millert Exp $
+# $Id: MAKEDEV,v 1.24 1998/09/15 10:23:22 pattonme Exp $
#
# Device "make" file. Valid arguments:
# all makes all known devices, including local devices,
@@ -386,11 +386,12 @@ bpf*)
;;
ipl)
- rm -f ipl ipnat ipstate
+ rm -f ipl ipnat ipstate ipauth
mknod ipl c 39 0
mknod ipnat c 39 1
mknod ipstate c 39 2
- chown root.wheel ipl ipnat ipstate
+ mknod ipauth c 39 3
+ chown root.wheel ipl ipnat ipstate ipauth
;;
tun*)
diff --git a/etc/etc.pc532/MAKEDEV b/etc/etc.pc532/MAKEDEV
index 2f7c38e429e..5bb2bc0b960 100644
--- a/etc/etc.pc532/MAKEDEV
+++ b/etc/etc.pc532/MAKEDEV
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: MAKEDEV,v 1.13 1998/01/26 04:19:46 dgregor Exp $
+# $OpenBSD: MAKEDEV,v 1.14 1998/09/15 10:23:22 pattonme Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
# All rights reserved.
@@ -261,11 +261,12 @@ bpf*)
;;
ipl)
- rm -f ipl ipnat ipstate
+ rm -f ipl ipnat ipstate ipauth
mknod ipl c 19 0
mknod ipnat c 19 1
mknod ipstate c 19 2
- chown root.wheel ipl ipnat ipstate
+ mknod ipauth c 19 3
+ chown root.wheel ipl ipnat ipstate ipauth
;;
tun*)
diff --git a/etc/etc.pmax/MAKEDEV b/etc/etc.pmax/MAKEDEV
index 241f05516f9..670b7f06510 100644
--- a/etc/etc.pmax/MAKEDEV
+++ b/etc/etc.pmax/MAKEDEV
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: MAKEDEV,v 1.23 1998/05/10 04:02:08 millert Exp $
+# $OpenBSD: MAKEDEV,v 1.24 1998/09/15 10:23:23 pattonme Exp $
# @(#)MAKEDEV 8.1 (Berkeley) 6/9/93
#
@@ -115,11 +115,12 @@ bpf*)
;;
ipl)
- rm -f ipl ipnat ipstate
+ rm -f ipl ipnat ipstate ipauth
mknod ipl c 91 0
mknod ipnat c 91 1
mknod ipstate c 91 2
- chown root.wheel ipl ipnat ipstate
+ mknod ipauth c 91 3
+ chown root.wheel ipl ipnat ipstate ipauth
;;
#tun*)
diff --git a/etc/etc.sparc/MAKEDEV b/etc/etc.sparc/MAKEDEV
index 40a8c522901..20630ad6211 100644
--- a/etc/etc.sparc/MAKEDEV
+++ b/etc/etc.sparc/MAKEDEV
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: MAKEDEV,v 1.46 1998/08/26 20:51:03 deraadt Exp $
+# $OpenBSD: MAKEDEV,v 1.47 1998/09/15 10:23:23 pattonme Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
# All rights reserved.
@@ -281,11 +281,12 @@ bpf*)
;;
ipl)
- rm -f ipl ipnat ipstate
+ rm -f ipl ipnat ipstate ipauth
mknod ipl c 59 0
mknod ipnat c 59 1
mknod ipstate c 59 2
- chown root.wheel ipl ipnat ipstate
+ mknod ipauth c 59 3
+ chown root.wheel ipl ipnat ipstate ipauth
;;
tun*)
diff --git a/etc/etc.sun3/MAKEDEV b/etc/etc.sun3/MAKEDEV
index d178e19c50a..614e1e614b0 100644
--- a/etc/etc.sun3/MAKEDEV
+++ b/etc/etc.sun3/MAKEDEV
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: MAKEDEV,v 1.19 1998/01/26 04:19:50 dgregor Exp $
+# $OpenBSD: MAKEDEV,v 1.20 1998/09/15 10:23:23 pattonme Exp $
# $NetBSD: MAKEDEV,v 1.8 1996/03/03 16:54:17 thorpej Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
@@ -89,6 +89,7 @@ case $arg in
all)
sh MAKEDEV std fd sd0 sd1 sd2 sd3 st0 st1 pty0 random ss0 uk0
sh MAKEDEV bpf0 bpf1 bpf2 bpf3 bpf4 bpf5 bpf6 bpf7 bpf8 bpf9
+ sh MAKEDEV ipl
;;
std)
@@ -132,6 +133,7 @@ ipl)
mk ipl c 75 0 600
mk ipnat c 75 1 600
mk ipstate c 75 2 600
+ mk ipauth c 75 3 600
;;
tun*)
diff --git a/etc/etc.vax/MAKEDEV b/etc/etc.vax/MAKEDEV
index 1cc1c0c5a5e..195a9f33b9a 100644
--- a/etc/etc.vax/MAKEDEV
+++ b/etc/etc.vax/MAKEDEV
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: MAKEDEV,v 1.15 1998/05/14 17:07:22 niklas Exp $
+# $OpenBSD: MAKEDEV,v 1.16 1998/09/15 10:23:23 pattonme Exp $
# $NetBSD: MAKEDEV,v 1.3 1996/01/07 16:53:15 ragge Exp $
#
# @(#)MAKEDEV 8.1 (Berkeley) 6/9/93
@@ -429,11 +429,12 @@ pty*)
;;
ipl)
- rm -f ipl ipnat ipstate
+ rm -f ipl ipnat ipstate ipauth
mknod ipl c 50 0
mknod ipnat c 50 1
mknod ipstate c 50 2
- chown root.wheel ipl ipnat ipstate
+ mknod ipauth c 50 3
+ chown root.wheel ipl ipnat ipstate ipauth
;;
np*)