#!/bin/sh # Start or stop cyrus-imapd # $FreeBSD$ case "$1" in start) if [ -x /usr/local/cyrus/bin/master -a \ -f /usr/local/etc/cyrus.conf -a \ -f /usr/local/etc/imapd.conf ]; then /usr/local/cyrus/bin/master -d echo -n ' imapd' fi ;; stop) if [ -r /var/run/cyrus-master.pid ]; then kill `cat /var/run/cyrus-master.pid` && echo -n ' imapd' rm /var/run/cyrus-master.pid fi ;; *) echo "Usage: `basename $0` {start|stop}" >&2 ;; esac exit 0 itory'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/devel/p5-Parallel-Iterator
Commit message (Expand)AuthorAgeFilesLines
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-0/+1
* - convert to the new perl5 frameworkaz2013-09-091-6/+3
* - Change PERL_MODBUILD to "yes" for all values less than or equal to 5.8.0+sunpoet2011-09-171-1/+1
* -remove MD5ohauer2011-07-031-1/+0
* Update my MAINTAINER address to culot@FreeBSD.org.culot2010-10-201-1/+1