83eb2c3700
literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
32 lines
579 B
Bash
32 lines
579 B
Bash
#!/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"
|