Make use of rcexec in rc_start().

ok giovanni@ (maintainer)
This commit is contained in:
ajacoutot 2011-03-20 13:06:23 +00:00
parent 976b63cb6e
commit 15cb0bcccf
7 changed files with 15 additions and 15 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.21 2011/03/17 16:49:27 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.22 2011/03/20 13:06:23 ajacoutot Exp $
COMMENT-main= authentication library for courier
COMMENT-ldap= ldap authentication module for courier-authLib
@ -13,7 +13,7 @@ PKGNAME-mysql= ${DISTNAME:S/lib-/lib-mysql-/}
PKGNAME-pgsql= ${DISTNAME:S/lib-/lib-pgsql-/}
PKGNAME-userdb= ${DISTNAME:S/lib-/lib-userdb-/}
REVISION-main= 4
REVISION-main= 5
REVISION-ldap= 1
REVISION-mysql= 1
REVISION-pgsql= 1

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $OpenBSD: courier_authdaemond.rc,v 1.4 2011/03/17 16:49:27 ajacoutot Exp $
# $OpenBSD: courier_authdaemond.rc,v 1.5 2011/03/20 13:06:23 ajacoutot Exp $
daemon="${TRUEPREFIX}/sbin/authdaemond"
@ -10,7 +10,7 @@ pexp=".*courierlogger.*-start ${TRUEPREFIX}/libexec/courier-authlib/authdaemond"
rc_start() {
mkdir -p /var/run/courier{,-auth}/
${daemon} start
${rcexec} "${daemon} start"
}
rc_stop() {

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.69 2011/03/17 16:49:27 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.70 2011/03/20 13:06:23 ajacoutot Exp $
COMMENT-main= imap server for maildir format mailboxes
COMMENT-pop3= pop3 server for maildir format mailboxes
@ -6,9 +6,9 @@ COMMENT-pop3= pop3 server for maildir format mailboxes
V= 4.8.0
DISTNAME= courier-imap-${V}
PKGNAME-main= ${DISTNAME}
REVISION-main= 5
REVISION-main= 6
FULLPKGNAME-pop3= courier-pop3-${V}
REVISION-pop3= 5
REVISION-pop3= 6
FULLPKGPATH-pop3= mail/courier-imap,-pop3
CATEGORIES= mail

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $OpenBSD: courier_imap-ssl.rc,v 1.4 2011/03/17 16:49:27 ajacoutot Exp $
# $OpenBSD: courier_imap-ssl.rc,v 1.5 2011/03/20 13:06:23 ajacoutot Exp $
daemon="${TRUEPREFIX}/libexec/imapd-ssl.rc"
@ -9,7 +9,7 @@ daemon="${TRUEPREFIX}/libexec/imapd-ssl.rc"
pexp=".*courierlogger.*imapd-ssl.pid"
rc_start() {
${daemon} start
${rcexec} "${daemon} start"
}
rc_stop() {

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $OpenBSD: courier_imap.rc,v 1.4 2011/03/17 16:49:27 ajacoutot Exp $
# $OpenBSD: courier_imap.rc,v 1.5 2011/03/20 13:06:23 ajacoutot Exp $
daemon="${TRUEPREFIX}/libexec/imapd.rc"
@ -9,7 +9,7 @@ daemon="${TRUEPREFIX}/libexec/imapd.rc"
pexp=".*courierlogger.*imapd.pid"
rc_start() {
${daemon} start
${rcexec} "${daemon} start"
}
rc_stop() {

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $OpenBSD: courier_pop3-ssl.rc,v 1.4 2011/03/17 16:49:27 ajacoutot Exp $
# $OpenBSD: courier_pop3-ssl.rc,v 1.5 2011/03/20 13:06:23 ajacoutot Exp $
daemon="${TRUEPREFIX}/libexec/pop3d-ssl.rc"
@ -9,7 +9,7 @@ daemon="${TRUEPREFIX}/libexec/pop3d-ssl.rc"
pexp=".*courierlogger.*pop3d-ssl.pid"
rc_start() {
${daemon} start
${rcexec} "${daemon} start"
}
rc_stop() {

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $OpenBSD: courier_pop3.rc,v 1.4 2011/03/17 16:49:27 ajacoutot Exp $
# $OpenBSD: courier_pop3.rc,v 1.5 2011/03/20 13:06:23 ajacoutot Exp $
daemon="${TRUEPREFIX}/libexec/pop3d.rc"
@ -9,7 +9,7 @@ daemon="${TRUEPREFIX}/libexec/pop3d.rc"
pexp=".*courierlogger.*pop3d.pid"
rc_start() {
${daemon} start
${rcexec} "${daemon} start"
}
rc_stop() {