mirror of
https://git.freebsd.org/ports.git
synced 2025-05-04 23:47:37 -04:00
33 lines
867 B
Bash
33 lines
867 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: xmrig
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# xmrig_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable it.
|
|
# xmrig_user: The user account the XMRig daemon runs as.
|
|
# It uses '%%USERS%%' user by default.
|
|
# Do not sets it as empty or it will run as root.
|
|
# xmrig_conf: The configuration file XMRig uses.
|
|
# Default: %%ETCDIR%%/config.json
|
|
# xmrig_flags: Additional runtime flags.
|
|
|
|
. /etc/rc.subr
|
|
name="%%PORTNAME%%"
|
|
rcvar="${name}_enable"
|
|
load_rc_config ${name}
|
|
|
|
: ${xmrig_enable:="NO"}
|
|
: ${xmrig_user:="%%USERS%%"}
|
|
: ${xmrig_conf:="%%ETCDIR%%/config.json"}
|
|
: ${xmrig_flags:=""}
|
|
|
|
command="/usr/sbin/daemon"
|
|
procname="%%PREFIX%%/bin/xmrig"
|
|
command_args="-f ${procname} --config=${xmrig_conf} ${xmrig_flags}"
|
|
|
|
run_rc_command "$1"
|