freebsd-ports/irc/iroffer-dinoex/files/iroffer.in

55 lines
1.2 KiB
Text
Raw Normal View History

2010-05-08 21:50:14 +02:00
#!/bin/sh
2010-05-08 21:50:14 +02:00
# PROVIDE: iroffer
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# iroffer_enable="YES"
# iroffer_flags="<set as needed>"
# iroffer_user="<set to username>"
# iroffer_bin="<change for language specific version>"
# iroffer_dir="<chdir to this>"
# iroffer_config="<name of the config file>"
2010-05-08 21:50:14 +02:00
#
# See iroffer(1) for iroffer_flags
#
. /etc/rc.subr
2010-05-08 21:50:14 +02:00
name="iroffer"
2020-04-16 16:49:59 +02:00
desc="Iroffer IRC Bot"
rcvar="iroffer_enable"
2010-05-08 21:50:14 +02:00
load_rc_config "$name"
2020-04-16 16:49:59 +02:00
: ${iroffer_enable:="NO"}
: ${iroffer_user:="bot"}
: ${iroffer_bin:="iroffer"}
: ${iroffer_dir:="/home/bot/iroffer/"}
: ${iroffer_config:="${iroffer_dir}mybot.config"}
2010-05-08 21:50:14 +02:00
start_precmd="iroffer_checkdisk"
restart_precmd="iroffer_checkdisk"
2020-04-16 16:49:59 +02:00
required_files="${iroffer_config}"
command="${iroffer_dir}/${iroffer_bin}"
if [ -n "${iroffer_dir}" ]; then
command_args="${command_args} -w ${iroffer_dir}"
fi
command_args="${command_args} -u ${iroffer_user}"
command_args="${command_args} -b ${iroffer_config}"
pidfile="${iroffer_dir}/mybot.pid"
2010-05-08 21:50:14 +02:00
iroffer_checkdisk()
{
cd "${iroffer_dir}"
if [ -n "${iroffer_dir}" ]; then
2010-05-08 21:50:14 +02:00
freespace=`df -k . | tail -1 | awk {'print $4'}`
if [ "${freespace}" -lt 10 ]; then
echo "Filesystem Full!" >&2
exit
fi
fi
}
run_rc_command "$1"