You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/mail-filter/gld/files/gld.rc

23 lines
443 B

#!/sbin/openrc-run
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need net # in case mysql daemon is not local
use dns mysql postgresql
before postfix
provide postfix_greylist
}
start() {
ebegin "Starting gld"
start-stop-daemon --start --quiet --exec /usr/bin/gld
eend $?
}
stop() {
ebegin "Stopping gld"
start-stop-daemon --stop --quiet --name gld
eend $?
}