cvs commit: ports/www/hiawatha Makefile ports/www/hiawatha/files hiawatha.in php-fcgi.in pkg-message.in

2011-08-23 Thread Greg Larkin
glarkin 2011-08-23 20:03:35 UTC FreeBSD ports repository Modified files: www/hiawatha Makefile www/hiawatha/files hiawatha.in pkg-message.in Added files: www/hiawatha/files php-fcgi.in Log: - Added rc.d file for php-fcgi (Hiawatha FastCGI daemon) -

Re: cvs commit: ports/www/hiawatha Makefile ports/www/hiawatha/files hiawatha.in php-fcgi.in pkg-message.in

2011-08-23 Thread Doug Barton
The rc.d script looks good, thanks! The only thing I would do differently is instead of having 2 separate lines: : ${hiawatha_pidfile=/var/run/hiawatha.pid} pidfile=${hiawatha_pidfile} Do it like this: pidfile=${hiawatha_pidfile=/var/run/hiawatha.pid} But that's really a micro-optimization.

Re: cvs commit: ports/www/hiawatha Makefile ports/www/hiawatha/files hiawatha.in php-fcgi.in pkg-message.in

2011-08-23 Thread Greg Larkin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 8/23/11 4:12 PM, Doug Barton wrote: The rc.d script looks good, thanks! The only thing I would do differently is instead of having 2 separate lines: : ${hiawatha_pidfile=/var/run/hiawatha.pid} pidfile=${hiawatha_pidfile} Do it like this: