Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 09 Oct 2009 14:34:00 -0400
From:      "Aryeh M. Friedman" <aryeh.friedman@gmail.com>
To:        Oliver Fromme <olli@lurza.secnetix.de>
Cc:        Roland Smith <rsmith@xs4all.nl>, freebsd-questions@freebsd.org
Subject:   Re: How to set device permissions at startup
Message-ID:  <4ACF8218.1080306@gmail.com>
In-Reply-To: <200910091653.n99Grsfg028286@lurza.secnetix.de>
References:  <200910091653.n99Grsfg028286@lurza.secnetix.de>

next in thread | previous in thread | raw e-mail | index | archive | help
Oliver Fromme wrote:
> Roland Smith wrote:
>  > Oliver Fromme wrote:
>  > > Quote from the manpage:
>  > > "The devfs.rules file provides an easy way to create and apply
>  > > devfs(8) rules, even for devices that are not available at boot."
>  > > 
>  > > The rules take effect whenever a new node (devide) appears,
>  > > even after devfs was mounted.
>  > 
>  > But one has to run '/etc/rc.d/devfs restart' for newly added rules to take
>  > effect! (or reboot the system, which is overkill).
>
> Yes, of course.  I thought that was obvious.
>
>  > Maybe I whould add that to the manual page for devfs.rules?
>
> Agreed, that might be an appropriate clarification.
>
> Best regards
>    Oliver
>
>   
It should be included because not everyone uses the standard /etc/rc.* 
hierachy.   For example I have a completely custom rc which before I did 
an other hack to make this issue not an issue read:

#!/bin/sh

PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/boot/kernel:/boot/modules
export PATH

kldload fuse
swapon -a
fsck -p
mount -rw /
mount -a
sysctl vfs.usermount=1
ntfs-3g /dev/ad4s1 /mnt/c
/usr/local/etc/rc.d/hald onestart
hostname aryeh-desktop.istudentunion.com
ifconfig ale0 192.168.2.2
ifconfig lo0 127.0.0.1
route add 127.0.0.1 102.168.2.2
route add default 192.168.2.1
named
ntpdate pool.ntp.org
cupsd
noip2
sendmail -bd -q1m




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4ACF8218.1080306>