cyrus 2.4.17 -- file descriptor limit set to -1?

2015-01-15 Thread Patrick Goetz
I'm firing up cyrus 2.4.17 for the first time on a new platform (Arch linux w/ systemd) and noticed the following error message (running journalctl -u cyrus-master): Jan 15 04:08:50 ibis cyrus/master[701]: setrlimit: Unable to set file descriptors limit to -1: Operation not permitted Jan 15 04:

Re: cyrus 2.4.17 -- file descriptor limit set to -1?

2015-01-15 Thread Geoff Winkless
RLIM_INFINITY is defined as ~0ULL, at least on my system. If it's cast to a signed value, that will come out at -1, no? My problem with systemd isn't that it doesn't work, it's that it's all-pervasive and viral, and forces people who've been using standard unix mechanisms for 20 years to learn som

Re: cyrus 2.4.17 -- file descriptor limit set to -1?

2015-01-19 Thread Adam Tauno Williams
On Thu, 2015-01-15 at 11:17 +, Geoff Winkless wrote: > RLIM_INFINITY is defined as ~0ULL, at least on my system. If it's cast > to a signed value, that will come out at -1, no? > My problem with systemd isn't that it doesn't work, It works. > it's that it's all-pervasive and viral, and force