freebsd-ports/www/searx/files/searx.in
Yuri Victorovich 37a182cb4c www/py-searx: Move to www/searx because this is a server, not a library
Port changes:
* Add USE_PYTHON=noflavors
* While here, add missing dependency dns/py-idna

PR:		231401
Approved by:	loic.blot@unix-experience.fr (maintainer)
2018-09-16 17:16:02 +00:00

48 lines
1,012 B
Bash

#!/bin/sh
# $FreeBSD$
# PROVIDE: searx
# REQUIRE: DAEMON NETWORKING
# BEFORE: LOGIN
# KEYWORD: shutdown
# Add the following lines to /etc/rc.conf to enable searx:
# searx_enable="YES"
#
# searx_enable (bool): Set to YES to enable searx
# Default: NO
# searx_conf (str): searx configuration file
# Default: ${PREFIX}/etc/searx.conf
# searx_user (str): searx daemon user
# Default: searx
# searx_group (str): searx daemon group
# Default: searx
# searx_flags (str): Extra flags passed to searx
. /etc/rc.subr
name="searx"
rcvar=searx_enable
: ${searx_enable:="NO"}
: ${searx_user:="www"}
: ${searx_group:="www"}
: ${searx_flags:=""}
# daemon
pidfile="/var/run/${name}.pid"
python="%%PYTHON_CMD%%"
script_py="%%PYTHON_SITELIBDIR%%/${name}/webapp.py"
command=/usr/sbin/daemon
procname="daemon"
command_args=" -c -f -P ${pidfile} ${python} ${script_py}"
start_precmd="searx_precmd"
searx_precmd()
{
install -o ${searx_user} /dev/null ${pidfile}
}
load_rc_config $name
run_rc_command "$1"