blob: 9b814a3aaea48efd56f50ffb97b2322c523a97f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/bin/sh
#
# $FreeBSD$
#
# 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"
|