# $NetBSD: ftpusers,v 1.2 2000/01/09 13:19:19 lukem Exp $ # # example /etc/ftpusers # # prevent the following from logging in: # - users `root' and `toor' # - members of the group `noftp' # - connections from 10.0.0.0/8 # - connections from *.spammer.com # root deny toor deny *:noftp deny *@10.0.0.0/8 deny *@*.spammer.com deny # anonymous ftp connections from *.netbsd.org and 204.152.186.0/24 go into # class `localguest' # ftp@*.netbsd.org allow localguest ftp@204.152.186.0/24 allow localguest # permit anonymous ftp connections from elsewhere (both entries are required, # for backwards compatibility, although `ftp' is the user checked in other # rules) # ftp allow anonymous allow # users who are members of a group name which ends with `src', connecting # from any host in the *.netbsd.org domain become class `source' # *:*src@*.netbsd.org allow source # prevent all other users # * deny -9.3-vfs NetBSD fork for lockdoc analysismerlin@scholz.ruhr
summaryrefslogtreecommitdiff
path: root/sys/dev/audiobell.c
AgeCommit message (Expand)Author
2009-05-12undo my previous changes.cegger
2009-05-07struct device * -> device_tcegger
2008-12-17kill MALLOC and FREE macros.cegger
2007-03-04Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.christos
2006-03-28Use device_unit().thorpej
2006-03-01merge yamt-uio_vmspace branch.yamt
2005-12-11merge ktrace-lwp.christos
2004-01-17Simple code to provide a console bell through a generic audio device, forbjh21