mailing

2003-01-01 Thread Henrique Lima
I am very curious about freebsd, can I be part of this mailing? ___ Busca Yahoo! O melhor lugar para encontrar tudo o que vocĂȘ procura na Internet http://br.busca.yahoo.com/ To Unsubscribe: send mail to [EMAIL PROTECTED] with "u

CFS

2003-01-01 Thread Cole Optec
Hi I was wondering if anyone knows of a new mailing list for CFS. I would also like to know if anyone had mod'd the CFS code to allow it to mount directories in another mode other than 700? Thanx Cole To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body

Re: sendmail: how to get the named of FreeBSD4.7 standards compliant?

2003-01-01 Thread Peter Much
! ! Gregory Neil Shapiro wrote: ! > pmc> While it is true that the said sendmail-option solves the problem ! > pmc> (if sendmail is new enough to understand it), I could nowhere find ! > pmc> information on how to fix the bug in the nameserver - that is, ! > pmc> in the nameserver that is packaged

CFS

2003-01-01 Thread cole
Hi I would like to know if anyone knows of a new or current mailing list for CFS port. I would also like to know if anyone has modded the code for CFS to allow the directories under it to be mounted in a different mode other than 700. thanx Cole. To Unsubscribe: send mail to [EMAIL PROTECTED]

Re: mailing

2003-01-01 Thread Terry Lambert
Henrique Lima wrote: > > I am very curious about freebsd, can I be part of this > mailing? Yes. List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe:

Re: sendmail: how to get the named of FreeBSD4.7 standards compliant?

2003-01-01 Thread Terry Lambert
Peter Much wrote: > 6. Then it asks the nameserver for the "" record of >"gate-e.oper.dinoex.org" (which does not exist - the >nameserver answers by sending the zonefile header (seems >ok?). Then sendmail asks again for the "" record of >"gate-e" (without domain). Now the lo

devd, crunchgen, C++, and /rescue

2003-01-01 Thread Tim Kientzle
I'm slowly tracking down the remaining minor issues with my all-static crunchgen-ed /rescue implementation. This includes pretty much everything from /bin and /sbin, as well as a few useful tools from /usr/bin and /usr/sbin. However, I've just run into an ugly problem. Specifically, devd is now w

Re: SCM_CREDS

2003-01-01 Thread David Malone
On Tue, Dec 31, 2002 at 08:40:16PM -0500, Jim Faucette wrote: > I'm trying to get a connecting process' PID that's using a UNIX socket. > recvmsg makes it appear possible, but so far no good. > > Has anyone done this before? Can you supply a code sippet??? In the FreeBSD implimentation, the sende

Reading rc.conf from C programs?

2003-01-01 Thread Tim Kientzle
I'm trying to figure out how to read and use /etc/rc.conf configuration variables from within a C program. The standard technique, of course, is to use a shell-script wrapper and pass the extracted values to the C program on the command line. But I want access to _all_ of the rc.conf variables, n

Re: Reading rc.conf from C programs?

2003-01-01 Thread Matthew West
On Wed, Jan 01, 2003 at 01:51:57PM -0800, Tim Kientzle wrote: > I'm trying to figure out how to read and use /etc/rc.conf > configuration variables from within a C program. You could perhaps copy the way that "The Fish" does it? Take a look at "ports/sysutils/thefish". The "parser.c" code appear

Re: Reading rc.conf from C programs?

2003-01-01 Thread Chuck Robey
On Thu, 2 Jan 2003, Matthew West wrote: > On Wed, Jan 01, 2003 at 01:51:57PM -0800, Tim Kientzle wrote: > > I'm trying to figure out how to read and use /etc/rc.conf > > configuration variables from within a C program. > > You could perhaps copy the way that "The Fish" does it? > > Take a look at

Re: Reading rc.conf from C programs?

2003-01-01 Thread Greg Shenaut
In message <[EMAIL PROTECTED]>, Chuck Robey cleopede: >On Thu, 2 Jan 2003, Matthew West wrote: > >> On Wed, Jan 01, 2003 at 01:51:57PM -0800, Tim Kientzle wrote: >> > I'm trying to figure out how to read and use /etc/rc.conf >> > configuration variables from within a C program. One off the wall wa

Re: devd, crunchgen, C++, and /rescue

2003-01-01 Thread Peter Wemm
Tim Kientzle wrote: > I'm slowly tracking down the remaining minor issues with > my all-static crunchgen-ed /rescue implementation. This > includes pretty much everything from /bin and /sbin, as > well as a few useful tools from /usr/bin and /usr/sbin. > > However, I've just run into an ugly probl

Re: Reading rc.conf from C programs?

2003-01-01 Thread Jordan K Hubbard
There's no canned code for doing this, though sysinstall has some very basic parsing routines for reading/writing rc.conf variables you could certain crib from. It sounds like that "thefish" utility someone else mentioned has an even more exotic parser, though I haven't compared the two implem

Re: Reading rc.conf from C programs?

2003-01-01 Thread Terry Lambert
Tim Kientzle wrote: > I'm trying to figure out how to read and use > /etc/rc.conf configuration variables from within > a C program. The standard technique, of course, > is to use a shell-script wrapper and pass the > extracted values to the C program on the command > line. But I want access to _