diff options
author | jmz <jmz@FreeBSD.org> | 1995-02-22 23:52:58 +0000 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1995-02-22 23:52:58 +0000 |
commit | 48e27359229f9e1b7efc563756e582dfc864eb11 (patch) | |
tree | 2a8e1a58d7413cbe647f5f5021afd87c10be1510 /etc/MAKEDEV | |
parent | 376cca86d09f3f0dda04eae3f04304f65e0076f6 (diff) | |
download | FreeBSD-src-48e27359229f9e1b7efc563756e582dfc864eb11.zip FreeBSD-src-48e27359229f9e1b7efc563756e582dfc864eb11.tar.gz |
Change permissions and ownership of joystick device files.
Diffstat (limited to 'etc/MAKEDEV')
-rw-r--r-- | etc/MAKEDEV | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV index c83e415..686a77b 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -77,7 +77,7 @@ # spigot Video Spigot video aquisition card # isdn* ISDN devices # -# $Id: MAKEDEV,v 1.70 1995/02/16 16:03:29 bde Exp $ +# $Id: MAKEDEV,v 1.71 1995/02/17 12:32:34 bde Exp $ # PATH=/sbin:/bin/:/usr/bin:/usr/sbin: @@ -719,11 +719,12 @@ cronyx) ;; joy) + umask 2 rm -f joy0 joy1 mknod joy0 c 51 0 mknod joy1 c 51 1 - chmod 444 joy0 joy1 - chown root.wheel joy0 joy1 + chown root.operator joy0 joy1 + chmod 640 joy0 joy1 ;; spigot) |