mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
Add forgotten rc file
Reported by: QAT
This commit is contained in:
parent
c292882c64
commit
05db7733ca
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=263646
32
mail/dma/files/dma_flushq.in
Normal file
32
mail/dma/files/dma_flushq.in
Normal file
@ -0,0 +1,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=${name}_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"
|
Loading…
Reference in New Issue
Block a user