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
662 B
Bash
32 lines
662 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# Run ASSP's nightly housekeeping script, rebuildspamdb.pl
|
|
# Delete old ASSP log files
|
|
|
|
cd %%ASSP_HOME%%
|
|
|
|
if [ ! -f %%DATADIR%%/rebuildspamdb.pl ]
|
|
then
|
|
echo "%%DATADIR%%/rebuildspamdb.pl does not exist"
|
|
rc_spamdb=2
|
|
else
|
|
echo ""
|
|
echo "Running ASSP rebuildspamdb.pl:"
|
|
%%PERL%% %%DATADIR%%/rebuildspamdb.pl && rc_spamdb=0 || rc_spamdb=3
|
|
chown -R %%ASSP_USER%%:%%ASSP_GROUP%% %%ASSP_HOME%%
|
|
fi
|
|
|
|
. /etc/rc.subr
|
|
name=assp
|
|
rcvar=assp_enable
|
|
load_rc_config $name
|
|
: ${assp_logexpire="45"}
|
|
|
|
echo ""
|
|
echo "Removing old ASSP log files:"
|
|
find -L . -name '*.maillog.txt' -mtime +$assp_logexpire -exec ls -l {} \; -exec rm {} \;
|
|
|
|
exit $rc_spamdb
|