* [gentoo-commits] gentoo-x86 commit in net-mail/dovecot/files: dovecot-1.2.init
@ 2010-06-20 10:29 Patrick Lauer (patrick)
0 siblings, 0 replies; 2+ messages in thread
From: Patrick Lauer (patrick) @ 2010-06-20 10:29 UTC (permalink / raw
To: gentoo-commits
patrick 10/06/20 10:29:06
Added: dovecot-1.2.init
Log:
Bump, fix for #324767. Small fix for init script to create needed dir if absent. Thanks to Eray Aslan
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.1 net-mail/dovecot/files/dovecot-1.2.init
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/files/dovecot-1.2.init?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/files/dovecot-1.2.init?rev=1.1&content-type=text/plain
Index: dovecot-1.2.init
===================================================================
#!/sbin/runscript
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/files/dovecot-1.2.init,v 1.1 2010/06/20 10:29:06 patrick Exp $
opts="${opts} reload"
depend() {
need localmount net
before postfix
after bootmisc ldap mysql ntp-client ntpd postgresql saslauthd slapd
use logger
}
checkconfig() {
DOVECOT_INSTANCE=${SVCNAME##*.}
if [ -n "${DOVECOT_INSTANCE}" -a "${SVCNAME}" != "dovecot" ]; then
DOVECOT_CONF=/etc/dovecot/dovecot.${DOVECOT_INSTANCE}.conf
else
DOVECOT_CONF=/etc/dovecot/dovecot.conf
fi
if [ ! -e ${DOVECOT_CONF} ]; then
eerror "You will need an ${DOVECOT_CONF} first"
return 1
fi
if [ -x /usr/sbin/dovecot ]; then
DOVECOT_BASEDIR=$(/usr/sbin/dovecot -c ${DOVECOT_CONF} -a | grep '^base_dir: ' | sed 's/^base_dir: //')
else
eerror "dovecot not executable"
return 1
fi
DOVECOT_BASEDIR=${DOVECOT_BASEDIR:-/var/run/dovecot}
DOVECOT_PIDFILE=${DOVECOT_BASEDIR}/master.pid
if [ ! -d "${DOVECOT_BASEDIR}" ]; then
install -d -o root -g root -m 0755 "${DOVECOT_BASEDIR}"
fi
}
start() {
checkconfig || return 1
ebegin "Starting ${SVCNAME}"
start-stop-daemon --start --exec /usr/sbin/dovecot \
--pidfile "${DOVECOT_PIDFILE}" -- -c "${DOVECOT_CONF}"
eend $?
}
stop() {
checkconfig || return 1
ebegin "Stopping ${SVCNAME}"
start-stop-daemon --stop --exec /usr/sbin/dovecot \
--pidfile "${DOVECOT_PIDFILE}"
eend $?
}
reload() {
checkconfig || return 1
ebegin "Reloading ${SVCNAME} configs and restarting auth/login processes"
start-stop-daemon --stop --oknodo --exec /usr/sbin/dovecot \
--pidfile "${DOVECOT_PIDFILE}" --signal HUP
eend $?
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/dovecot/files: dovecot-1.2.init
@ 2012-12-06 11:32 Eray Aslan (eras)
0 siblings, 0 replies; 2+ messages in thread
From: Eray Aslan (eras) @ 2012-12-06 11:32 UTC (permalink / raw
To: gentoo-commits
eras 12/12/06 11:32:49
Removed: dovecot-1.2.init
Log:
Remove old
(Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-12-06 11:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-20 10:29 [gentoo-commits] gentoo-x86 commit in net-mail/dovecot/files: dovecot-1.2.init Patrick Lauer (patrick)
-- strict thread matches above, loose matches on Subject: below --
2012-12-06 11:32 Eray Aslan (eras)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox