aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>2001-02-03 23:31:31 +0000
committerBrian Somers <brian@FreeBSD.org>2001-02-03 23:31:31 +0000
commita567cf6dd64894304ae7d9f1605cab1b9da66a80 (patch)
tree5861c3295bac55e78d4dae4ddf4f975dd1136c28 /etc
parentf434e08437b93667910176f142fcefaa9bba077f (diff)
downloadsrc-a567cf6dd64894304ae7d9f1605cab1b9da66a80.tar.gz
src-a567cf6dd64894304ae7d9f1605cab1b9da66a80.zip
Don't specify root:wheel for tun*, it's the default.
Pointed out by: bde
Notes
Notes: svn path=/head/; revision=71969
Diffstat (limited to 'etc')
-rw-r--r--etc/MAKEDEV2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV
index 81a80c09254c..bbb86917f29f 100644
--- a/etc/MAKEDEV
+++ b/etc/MAKEDEV
@@ -1532,7 +1532,7 @@ tun*)
ntun=`expr $i : 'tun\(.*\)$'`
unit=0
while [ $unit -le $ntun ]; do
- mknod tun$unit c 52 `unit2minor $unit` root:wheel
+ mknod tun$unit c 52 `unit2minor $unit`
unit=$(($unit + 1))
done
;;