Re: Reading rc.conf from C programs?

2003-01-03 Thread Neil Blakey-Milner
o get that set up) using LDAP or netinfo. Possibly, libsysconfig would provide the same functionality for C programs, similar to PAM or nsswitch. Actually, for me it doesn't matter, so long as we actually get over the hurdle of not being able to read/edit the configuration automatically. If we&#x

Re: key=value in rc.conf (was Re: Reading rc.conf from C programs?)

2003-01-03 Thread Neil Blakey-Milner
r C, though. http://docs.freebsd.org/cgi/getmsg.cgi?fetch=48338+0+archive/2000/freebsd-hackers/20001008.freebsd-hackers I got one "go ahead", but a "I don't see the point" from the then-pseudo-maintainer of the rc stuff. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Suggestion: usbd.conf uses rc.conf for options

2002-10-28 Thread Neil Blakey-Milner
whatever (netinfo?) to get our configuration. ===>>> When we can finally get rid of non-variables in the configuration system we no longer rely on 'sh', and we can read configuration using any programming language, and/or (even better) back the configuration up with LDAP or wh

Re: Cyrus vs. UW IMAP (was: Re: I Volunteer)

2002-06-22 Thread Neil Blakey-Milner
MAP client support yet. Most IMAP clients I know of support SSL. Outlook, Outlook Express, Eudora, Netscape, Evolution, mutt, pine, ... Which IMAP clients don't? Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Security through obscurity? (was: ssh + compiled-in SKEY support considered harmful?)

2002-04-23 Thread Neil Blakey-Milner
many believe it's a sane default. If it were reverted, I'm sure there'll be lots of people re-adding the change to their security regimen. And lots more people scurrying to patch when the next DoS or exploit comes out. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Question about what programs to use in /etc/rc*

2001-09-09 Thread Neil Blakey-Milner
t be able to do it all within sh, by using case and "Parameter Expansion" (see the section in the sh man page). Try this: case ${ifconfig_args} in *[Dd][Hh][Cc][Pp]*) # do stuff with whatever $ifconfig_args=${ifconfig_args%dhcp} ;; esac This probably won't work, since I've not tested it. Casedness is irritating too - dd.sh would advocate converting it all to lowercase with ``dd conv=lcase''. ;) Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: getting rid of sysinstall - Was: FreeBSD Mall now BSDCentral

2001-07-12 Thread Neil Blakey-Milner
ade subsys] >[nfs mount]<-++-->[package installer] > [ftp/http fetcher]<-+ > > > this in no way perfect, just some idea -- feel free to flame me if i > missed the point, but don't rip out my intestines ;-) > s/python/tcl/, and you're talking about "libh". Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: telnet to AF_UNIX sockets [PATCH]

2001-05-24 Thread Neil Blakey-Milner
in base that can do this. To good effect, I might add. ;) Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: SSH Must Die

2001-05-12 Thread Neil Blakey-Milner
o a host and disconnect immediately. It might be failing after trying to open or read from /dev/urandom. Can you give the output of 'ls -l /dev/*random'? Maybe someone will have something useful to go on from the information above instead of "it doesn't work". Neil --

Re: Jail Pseudo Terminals

2001-02-12 Thread Neil Blakey-Milner
r,s,P,Q,R,S}*, if the latter aren't present. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: how to test out cron.c changes? (was: cvs commit: src/etc crontab)

2001-01-20 Thread Neil Blakey-Milner
ith the old behaviour default. _Especially_ if you intend to MFC this, since changing this behaviour in a minor release, without a way to have the old behaviour, is almost certainly wrong. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "u

Re: how to test out cron.c changes? (was: cvs commit: src/etc crontab)

2001-01-20 Thread Neil Blakey-Milner
s(virtualTime, &database, TRUE, TRUE); } else { wakeupKind = -1; if (timeDiff > -(3*MINUTE_COUNT)) wakeupKind = 0; ... It should work exactly like the old cron behaviour, unless the '-b' flag is given. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Patch to fix "make buildkernel requires full obj directory" mistake

2001-01-18 Thread Neil Blakey-Milner
oks like it rebuilds them itself in a > whacked out way to make the whole thing work. > > Still, I don't think it is too onerous a requirement that a buildworld > have happened first. The problem then is that the programs aren't built with the correct set of defines and envi

Patch to fix "make buildkernel requires full obj directory" mistake

2001-01-17 Thread Neil Blakey-Milner
ace to place the addition of OBJFORMAT_PATH, since $PATH is made to include the supplied $PATH environment variable in many other places. I'm not willing to make a judgement whether using the supplied OBJFORMAT_PATH is correct in any of those places, but I wish to fix the buildkernel target.

Re: Permissions on crontab..

2001-01-17 Thread Neil Blakey-Milner
crontab file. The setgid is for adjusting the modification time on the crontab directory, to signal to cron that there has been a change. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Permissions on crontab..

2001-01-16 Thread Neil Blakey-Milner
also toyed with making the directory sticky, and adding sanity checks to cron to not invoke tabs not owned by the user they refer to or root, or at least give warnings. FWIW, I had patches to convert 'at' and 'crontab' to being sgid-at and sgid-crontab ('at' has some really ugly macros that luckily aren't needed again). I'll probably be doing them again, now that my time is more sane. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: how to test out cron.c changes? (was: cvs commit: src/etc crontab)

2001-01-11 Thread Neil Blakey-Milner
back. And if it's a big backwards jump, assume something unusual is up, and just start functioning as if the time hadn't changed. The previous behaviour says not to care what changes occur in time whatsoever, and only compare this exact current minute of the waking up to the crontab lis

Re: how to test out cron.c changes? (was: cvs commit: src/etc crontab)

2001-01-11 Thread Neil Blakey-Milner
until 5.0, if that is deemed necessary. Now, if anyone has a reasoned argument about the new algorithm (like, how it handles certain kinds of events in a surprising way), I'd like to hear it, or we can proceed to make it an option. If anyone has some clear cases why this is a truly aston

Re: how to test out cron.c changes? (was: cvs commit: src/etc crontab)

2001-01-10 Thread Neil Blakey-Milner
jor skills will read the release notes. Common sense indicates that they are able to use a command line option that disable the new reliable behaviour. There has been expressed a need for testing. That is dealt with by three years in OpenBSD, and a period of time in the development branch

Re: how to test out cron.c changes? (was: cvs commit: src/etc crontab)

2001-01-10 Thread Neil Blakey-Milner
ld be postponed to being in a release until 5.0; by then we'd have had our own testing for at least one DST change, and OpenBSD's testing for at least 7. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: how to test out cron.c changes? (was: cvs commit: src/etc crontab)

2001-01-10 Thread Neil Blakey-Milner
ed behaviour for a tiny percentage. Those people should be reading the release notes ("or they shouldn't be system administrators or run FreeBSD"). Again, this change is from OpenBSD. We will synchronise with their changes, and perhaps offer them back a patch to ignore what "ultra l

Re: how to test out cron.c changes? (was: cvs commit: src/etc crontab)

2001-01-09 Thread Neil Blakey-Milner
Also, the only reason cron is doing the wrong thing now is that it is trying to be clever to let people set jobs in their local time, and we get bit because of silly things like DST. It should, of course, be expressed as UTC.) Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send ma

Re: how to test out cron.c changes? (was: cvs commit: src/etc crontab)

2001-01-09 Thread Neil Blakey-Milner
nd that there > will be vigorous resistance to incorporating your proposed changes. And when you finally realize that everyone else thinks this is a great idea, you'll stop your sole campaign to vigourously resist the incorporation of this code? If it helps, we can have an option ('

Re: RFC: a CUI controlpanel for FreeBSD

2001-01-05 Thread Neil Blakey-Milner
u most enjoy and/or are best at. If you like writing documentation, there's the documentation project; if you like general hacking, generally hack, and if you like in-depth kernel stuff, I'm sure the kernel people will be happy for more of themselves. (: Neil -- Neil Blakey-M

Re: OT: silence as an answer? (was: how to test out cron.c changes?)

2001-01-02 Thread Neil Blakey-Milner
to test DST changes?", and then promptly forgetting about it, because I never really deal with DST changes. I think the only way is the hard way - changing the date in increments and testing whether extra or no jobs are run. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: FreeBSD vs. Linux, Solaris, and NT

2000-12-26 Thread Neil Blakey-Milner
st providing an object archive to the langauge and make the users link against their GPL libc if I was worried about license problems on a "free software only" system. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: cvs commit: src/usr.sbin/pciconf vendors.h pciconf.8 pciconf.c

2000-11-13 Thread Neil Blakey-Milner
ut I used a table per device type. I'm uncertain as to what others think on that. Cheers, Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Starting to code

2000-10-18 Thread Neil Blakey-Milner
and 1.3 RES, though. Bad bad pwm, with quite a few frames and a number of tabs in each, all over about 6 workspaces. And I haven't manage to crash it yet, so I'm quite happy. Check out ports/x11-wm/pwm sometime. See the home page http://www.students.tut.fi/~tuomov/pwm/ for what passes for "themes". (: End of advertisement. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Making /etc/defaults/rc.conf a configuration file.

2000-10-05 Thread Neil Blakey-Milner
vestigate the NetBSD stuff properly, and compare it with slightly more featureful USM ( http://www.roguetrader.com/~brandon/sas/ ), which unfortunately may do too many things behind your back than what we're used to. However, I have a few things before that in my queue, and one of them is maki

Making /etc/defaults/rc.conf a configuration file.

2000-10-02 Thread Neil Blakey-Milner
n . /etc/defaults/periodic.conf source_periodic_confs fi with rcfile=/etc/defaults/periodic.conf listvar=periodic_conf_files . /etc/sourceconf Neil -- Neil Blakey-Milner Sunesi Clinical Systems [EMAIL PROTECTED] Index: etc/netstart === RCS

Re: device naming convention

2000-09-18 Thread Neil Blakey-Milner
amp. > > Yet, there are still isolated cases where raw io can be beneficial. What > should I do for raw io in later versions of FreeBSD? We didn't get rid of raw devices. We got rid of block devices, and kept character devices. Neil -- Neil Blakey-Milner Sunesi Clinical Systems [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: device naming convention

2000-09-18 Thread Neil Blakey-Milner
ut information, is available in http://www.FreeBSD.org/handbook/disks.html Of course, noone reads documentation, so I don't know why I bother. (: Neil -- Neil Blakey-Milner Sunesi Clinical Systems [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd

Re: ether_ifattach() issue

2000-08-06 Thread Neil Blakey-Milner
_bpf, ifp, DLT_EN10MB, sizeof(struct ether_header)); In other words - if_attach is no more. But, older drivers still use if_attach, and thus when ether_ifattach occurs, that's the second time that happens. Of course, I have no idea how the ether_ifattach argument change affects things - I'

Re: ether_ifattach() issue

2000-08-06 Thread Neil Blakey-Milner
r work. Neil -- Neil Blakey-Milner Sunesi Clinical Systems [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Berkeley make: evaluations inside for loops

2000-08-03 Thread Neil Blakey-Milner
.endfor > > test: > echo BAR=${BAR} Makefile2 expands to: BAZ= widget .if widget == ${BAZ} BAR= equal .endif And '.if' only takes "expressions", which can be comparisons (ie, "!=", "=="), which in turn must have a variable on the left hand sid

Re: /tmp on a ramdisk?

2000-07-30 Thread Neil Blakey-Milner
happy with the performance. What > > benefits would I realize using /tmp on a ramdisk? > > CW on this is varied, but the current trend is that /tmp on a md is just a > waste of ram, since (basically) everything in /tmp is in ram twice. I think that's MFS, not MD. Neil -

PR 10548: more userful ifconfig behaviour without args

2000-07-13 Thread Neil Blakey-Milner
Hi, There are plenty of PRs languishing without comment in the PR database, and this is one that requires a "implement and close it" or "here's a good reason not to do this, and close it" response. Any takers? Reply-To set to myself. Neil -- Neil Blakey-Milner Sunes

Re: PATCH src/etc/root : more->less

2000-07-11 Thread Neil Blakey-Milner
to refer to programs that > need to be installed from a port first? 'less' will be in 4.1 and beyond. Neil -- Neil Blakey-Milner Sunesi Clinical Systems [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: style(9)

2000-06-30 Thread Neil Blakey-Milner
. Anyway, you can set your tab size to whatever you want. So long as it is a _tab_, and not 2 or 4 or 8 spaces. If you're heading into the margin constantly, you should simplify your code, or break it up into (preferably reusable) functions that perform one task. Neil -- Neil Blakey-Milner Su

Re: Anybody working on FreeBSD BIOS?

2000-06-19 Thread Neil Blakey-Milner
On Mon 2000-06-19 (11:45), Neil Blakey-Milner wrote: > 'linuxbios' will only support booting off Linux partitions? > > I doubt they're replacing a multi-purpose, occasionally > not-all-that-clever thing, with a single-purpose very-often > not-all-that-clever thin

Re: Anybody working on FreeBSD BIOS?

2000-06-19 Thread Neil Blakey-Milner
#x27;s easy. 'linuxbios' will only support booting off Linux partitions? I doubt they're replacing a multi-purpose, occasionally not-all-that-clever thing, with a single-purpose very-often not-all-that-clever thing? What 'support' will FreeBSD require in 'linuxbios'?

Re: routing bug(?) persists (PR 16318)

2000-06-15 Thread Neil Blakey-Milner
On Thu 2000-06-15 (14:03), Marinos J . Yannikos wrote: > On Thu, Jun 15, 2000 at 01:47:17PM +0200, Neil Blakey-Milner wrote: > > The PR number might be useful, if you have it. If it's not in the PR > > database, then you should submit it. That way we get to lay blame &g

Re: routing bug(?) persists (PR 16318)

2000-06-15 Thread Neil Blakey-Milner
x break something? If not, why isn't it in 3.4-STABLE yet? > It is necessary for the above configuration (or isn't it? I couldn't find The PR number might be useful, if you have it. If it's not in the PR database, then you should submit it. That way we get to lay blame *gri

Re: Remote syslog with a tag ?

2000-06-14 Thread Neil Blakey-Milner
t; fox syslog.conf. Are there any syslogds that can do this? What > > syntax do they use? > > I have a patched version to do this. > If anyone is interessted I'm producing diffs. I'm sure many people are interested. Send a PR, or patches to [EMAIL PROTECTED] Neil -- Neil B

Re: IP prepaid accounting

2000-06-08 Thread Neil Blakey-Milner
t also means you can set up your quotas, change the traffic numbers, change the match sets, all without changing your basic firewall rules. Neil -- Neil Blakey-Milner Sunesi Clinical Systems [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: IP prepaid accounting

2000-06-08 Thread Neil Blakey-Milner
2 (dummynet middle quota) ipfw add pipe 2 ip from any to any oquota 2 uquota 3 (get even slower) ipfw add deny ip from any to any oquota 3 (total stop) (allowing for slower and slower service instead of just two levels) Neil -- Neil Blakey-Milner Sunesi Clinical Systems [EMAIL PROTECTED] To Uns

Re: kerneld for FreeBSD

2000-06-07 Thread Neil Blakey-Milner
make sense. I do like the way the auto-ifconfig and auto-mount stuff works, though. At the very least, I'd like a probe-only way to find out what devices are available, given a bunch of device driver modules. Neil -- Neil Blakey-Milner Sunesi Clinical Systems [EMAIL PROTECTED] To Uns

Re: kerneld for FreeBSD

2000-06-07 Thread Neil Blakey-Milner
. > It might be nice to start running on modules regularly. It would also > be useful to be able to update your device driver while running > freebsd, without needing to reboot. You can already do this. kldunload the old module, and kldload the new module. Or am I missing somethin

Re: Write-protected floppy crash

2000-06-06 Thread Neil Blakey-Milner
s not 'correct', but it does happen, and is copiously documented and mentioned on various mailing lists. It would be nice if you could fix it *grin*. Neil -- Neil Blakey-Milner Sunesi Clinical Systems [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe

Re: kerneld for FreeBSD

2000-06-05 Thread Neil Blakey-Milner
On Sun 2000-06-04 (23:06), Coleman Kane wrote: > Look through /modules... I'm still having problems working out what this will do. Can you explain the differences between the current way of doing things, and what your stuff will conceptually do? Neil -- Neil Blakey-Milner Sunesi

Re: Safe sourcing of rc files

2000-04-26 Thread Neil Blakey-Milner
On Wed 2000-04-19 (16:51), Neil Blakey-Milner wrote: > I have another idea: We make a sh script named "rcsource" or whatever, > which we source when we want to have the rc environment, stealing your > code maliciously: > > /-- > sourcercs_sourced_files= >

Re: Safe sourcing of rc files

2000-04-19 Thread Neil Blakey-Milner
of a preprocessor for a file: preprocessor__etc_defaults_rc.conf='cpp' will be checked if sourcercs is run on /etc/defaults/rc.conf, and it will be passed through cpp before trying to understand it. This should be extensible enough to avoid the need of sh-script to get a value

Re: zsh compdef collection for FreeBSD

2000-03-24 Thread Neil Blakey-Milner
cvs tree of the directory I'm in: (nbm@mithrandr) /usr/src/contrib/cvs> ncvs (nbm@mithrandr) /home/ncvs/src/contrib/cvs> uncvs pushes me back. ncvs could be made much more intelligent, of course. Anyway, enough of that. Time for me to finally learn zsh. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

3.x -> 4.x kernel config converter

2000-03-24 Thread Neil Blakey-Milner
ght some people might be interested in this - if it works well enough, it might even be useful to put in the tools directory, or integrate it into any 'update' target that may appear. It's at http://people.FreeBSD.org/~nbm/three-to-four-conf.pl Neil -- Neil Blakey-Milner [EMAIL PRO

Re: Is FreeBSD dead ?

2000-03-10 Thread Neil Blakey-Milner
x27;s easy enough to just rename the project and carry on with the existing code. There's nothing that can be done to prevent it, and you'd basically have FreeBSD again. Walnut Creek doesn't own FreeBSD, so BSDI can't buy FreeBSD via Walnut Creek. So, no, FreeBSD certainly i

Re: Re/Fwd: freebsd specific search

2000-02-02 Thread Neil Blakey-Milner
t FreeBSD with regards to quality control, and what I don't know about Slackware in order to answer your question.) Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: question about boot loaders

1999-12-09 Thread Neil Blakey-Milner
ince starting my new job to work on it much more. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Update the name of a filesystem (more details)

1999-10-20 Thread Neil Blakey-Milner
unt then mount) is the way to change mountpoint names. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: updating packages automatically, etc.pp.

1999-09-29 Thread Neil Blakey-Milner
ency" information, which isn't too great. You can find the directory of alternate version ports in /usr/ports/INDEX (much like pkg_version) - grep for the exact version specified in the return from pkg_version, and you pick up the correct ports directory as a bonus. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: A new package fetching utility, pkg_get

1999-09-27 Thread Neil Blakey-Milner
e interpretation - usually pkg_version takes a path to the INDEX as its only argument, my patches use a -f location option. Plug in those patches Nik has, and you can have intelligent automatic updating (although sometimes you'll clobber your configuration files). Neil -- Neil Blakey-Milne

Re: "style" question

1999-09-17 Thread Neil Blakey-Milner
; if (flag) > j = 1; > return j; > } Or, if you really want to, use your other return scheme. In other words, initialize j, probably to 0. Neil -- Neil Blakey-Milner n...@rucus.ru.ac.za To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-hackers" in the body of the message

Re: "style" question

1999-09-17 Thread Neil Blakey-Milner
; if (flag) > j = 1; > return j; > } Or, if you really want to, use your other return scheme. In other words, initialize j, probably to 0. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Please review: rc file changes

1999-09-01 Thread Neil Blakey-Milner
ect conjunctions), which has always caused havoc in my brief involvement in user education and documentation. I'd also like to advocate the return of the semi-colon; it is underused. (Follow-ups to -chat) Neil -- Neil Blakey-Milner n...@rucus.ru.ac.za To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-hackers" in the body of the message

Re: Please review: rc file changes

1999-09-01 Thread Neil Blakey-Milner
ect conjunctions), which has always caused havoc in my brief involvement in user education and documentation. I'd also like to advocate the return of the semi-colon; it is underused. (Follow-ups to -chat) Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: df and procfs

1999-08-26 Thread Neil Blakey-Milner
On Thu 1999-08-26 (12:33), Ben Rosengart wrote: > On Thu, 26 Aug 1999, Neil Blakey-Milner wrote: > > > On Thu 1999-08-26 (12:15), Ben Rosengart wrote: > > > > > > (The man page seems to be in error, though, when it says that "sysctl > > > vfs&qu

Re: df and procfs

1999-08-26 Thread Neil Blakey-Milner
s are available.) lsvfs should give a good indication. Neil -- Neil Blakey-Milner n...@rucus.ru.ac.za To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-hackers" in the body of the message

Re: df and procfs

1999-08-26 Thread Neil Blakey-Milner
On Thu 1999-08-26 (12:33), Ben Rosengart wrote: > On Thu, 26 Aug 1999, Neil Blakey-Milner wrote: > > > On Thu 1999-08-26 (12:15), Ben Rosengart wrote: > > > > > > (The man page seems to be in error, though, when it says that "sysctl > > > vfs&qu

Re: df and procfs

1999-08-26 Thread Neil Blakey-Milner
ystems are available.) lsvfs should give a good indication. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: proposed change for /etc/periodic/* scripts

1999-08-23 Thread Neil Blakey-Milner
ges to this effect active on a box not here, I'll see if it is up-to-date enough to generate patches, and send them on to help you, if necessary. Neil -- Neil Blakey-Milner n...@rucus.ru.ac.za To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-hackers" in the body of the message

Re: proposed change for /etc/periodic/* scripts

1999-08-23 Thread Neil Blakey-Milner
ges to this effect active on a box not here, I'll see if it is up-to-date enough to generate patches, and send them on to help you, if necessary. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Inetd and wrapping.

1999-06-28 Thread Neil Blakey-Milner
ent configuration files (which you can), if those people who want to run both wrapped and non-wrapped services agree that this is an option, there needn't be a hack to do this sort of thing. Neil -- Neil Blakey-Milner [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Inetd and wrapping.

1999-06-28 Thread Neil Blakey-Milner
nfiguration files (which you can), if those people who want to run both wrapped and non-wrapped services agree that this is an option, there needn't be a hack to do this sort of thing. Neil -- Neil Blakey-Milner n...@rucus.ru.ac.za To Unsubscribe: send mail to majord...@freebsd.org with