backgrounding daemons: /etc/rc and rc_scripts vs. rc_bg

2011-07-14 Thread Roland Kammerer
Last week I sent a small patch (~10 lines) for /etc/rc to robert@ that would allow to prefix daemons in rc_scripts with an '@' and then these prefixed daemons would be started in background. For example: rc_scripts=foo @bar baz. bar would be started to background. robert replied that starting to

Re: backgrounding daemons: /etc/rc and rc_scripts vs. rc_bg

2011-07-14 Thread Antoine Jacoutot
On Thu, 14 Jul 2011, Roland Kammerer wrote: Last week I sent a small patch (~10 lines) for /etc/rc to robert@ that would allow to prefix daemons in rc_scripts with an '@' and then these prefixed daemons would be started in background. For example: rc_scripts=foo @bar baz. bar would be started

Re: default label for default route

2011-07-14 Thread Henning Brauer
* Vadim Zhukov persg...@gmail.com [2011-07-11 01:23]: On Monday 11 July 2011 03:04:11 jirib wrote: Hello, what do you think about having automatical label for defualt route - named 'default' for example? I was just trying how to block via pf some traffic which is not on my lan and

[SUSPECTED SPAM] coconutwater

2011-07-14 Thread Lucy
Dear Sir/Madam: We are professional Coconut Water, Energy Drinks, Aloe-vera juice and Natural fruit juice manufacturer in Vietnam. Our company have pass many inspection and get the FDA, HACCP,ISO,Halal certificate. You can visit:

Re: cwm: menu border + typo

2011-07-14 Thread Alexander Polakov
* Alexander Polakov polac...@gmail.com [110714 15:24]: Adds a border around the menu window. I think it looks nicer with border. I have more worthless cwm diffs, like: - Add cycleingroup,rcycleingroup Cycle through clients belonging to the same group as active client. - Redraw

Re: Expose openat(2), etc in libc

2011-07-14 Thread Christian Weisgerber
Matthew Dempsky matt...@dempsky.org wrote: Index: include/unistd.h === RCS file: /home/mdempsky/anoncvs/cvs/src/include/unistd.h,v retrieving revision 1.64 diff -u -p -r1.64 unistd.h --- include/unistd.h 3 Jul 2011 18:51:01

Support for fdopendir(3)

2011-07-14 Thread Matthew Dempsky
Diff below adds POSIX.1-2008's fdopendir(3) to libc. Specifically: - Moves the current opendir.c to fdopendir.c with changes as appropriate (e.g., checking that the fd is open for reading, and setting FD_CLOEXEC after we've already allocated memory for the DIR struct). Also