1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00
freebsd-ports/mail/dma/files/dma_flushq.in
2021-04-06 16:31:13 +02:00

31 lines
564 B
Bash

#!/bin/sh
# PROVIDE: dma mail
# REQUIRE: LOGIN cleanvar
# KEYWORD: shutdown
#
# Add the following line to /etc/rc.conf to enable dma mailq flushing on
# startup or before shutdown:
# dma_flushq_enable (bool): Set it to "YES" to flush mailq on startup
# or before shutdown
# Default is "NO".
#
. /etc/rc.subr
name="dma_flushq"
rcvar=dma_flushq_enable
load_rc_config ${name}
: ${dma_flushq_enable:="NO"}
start_cmd=${name}
stop_cmd=${name}
dma_flushq() {
%%PREFIX%%/libexec/dma -q
}
run_rc_command "$1"