remove devices from udev hook that are created automatically

This commit is contained in:
Tobias Powalowski 2011-07-29 10:00:35 +02:00
parent ba94db8568
commit 28b91d7396

View file

@ -5,10 +5,4 @@ run_hook ()
# these static devices are created for convenience, to autoload the modules if necessary # these static devices are created for convenience, to autoload the modules if necessary
# /dev/loop0 # /dev/loop0
mknod -m 0660 /dev/loop0 b 7 0 mknod -m 0660 /dev/loop0 b 7 0
chgrp disk /dev/loop0
# /dev/net/tun
mkdir /dev/net
mknod -m 0666 /dev/net/tun c 10 200
# /dev/fuse
mknod -m 0666 /dev/fuse c 10 229
} }