diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1999-08-20 17:00:39 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1999-08-20 17:00:39 +0000 |
commit | ba8dd013df3354828f93ae36fcb05e6bd34db0e4 (patch) | |
tree | 6bad76b347c198f58356f7fecef63053a11102ae /etc/etc.pmax | |
parent | d59b60290a19250ffb3c30f8b7e8e14cd115f6cd (diff) |
Change the default serial port device and /var/spool/lock permissions.
/var/spool/lock becomes uucp.dialer, mode 1775, and serial devices
become uucp.dialer, mode 660.
(A couple of "dead" MAKEDEVs have been updated because they conformed the
the old permission scheme, while others have not because they didn't.)
Diffstat (limited to 'etc/etc.pmax')
-rw-r--r-- | etc/etc.pmax/MAKEDEV | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/etc.pmax/MAKEDEV b/etc/etc.pmax/MAKEDEV index d109259509e..0ba5cf4ee41 100644 --- a/etc/etc.pmax/MAKEDEV +++ b/etc/etc.pmax/MAKEDEV @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: MAKEDEV,v 1.30 1998/11/25 04:58:54 millert Exp $ +# $OpenBSD: MAKEDEV,v 1.31 1999/08/20 17:00:37 downsj Exp $ # @(#)MAKEDEV 8.1 (Berkeley) 6/9/93 # @@ -314,6 +314,8 @@ dc*) 0) mknod tty00 c 16 2 mknod tty01 c 16 3 + chown uucp.dialer tty00 tty01 + chmod 660 tty00 tty01 ;; *) echo bad unit for dc in: $i @@ -327,6 +329,8 @@ scc*) 0) mknod tty00 c 17 0 mknod tty01 c 17 2 + chown uucp.dialer tty00 tty01 + chmod 660 tty00 tty01 ;; *) echo bad unit for scc in: $i |