403Webshell
Server IP : 82.208.35.60  /  Your IP : 216.73.216.89
Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31
System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64
User : studiokobylisy_cz ( 1008)
PHP Version : 7.3.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /usr/ports/databases/tarantool/files/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/ports/databases/tarantool/files/tarantool.in
#!/bin/sh

# PROVIDE: tarantool
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# tarantool_enable="YES"
# tarantool_instances=""
#

. /etc/rc.subr

name="tarantool"
rcvar=tarantool_enable

load_rc_config "$name"

tarantool_enable=${tarantool_enable:-"NO"}
tarantool_instances=${tarantool_instances:-"%%ETCDIR%%/instances.enabled"}

start_cmd="${name}_start"
stop_cmd="${name}_stop"
restart_cmd="${name}_restart"

INSTANCES=$(find ${tarantool_instances} -type l -name '*.lua' 2>/dev/null)
TDAEMON=%%PREFIX%%/bin/tarantool
TCTL=%%PREFIX%%/bin/tarantoolctl

tarantool_start()
{
	echo "tarantool: Starting instances"
	for inst in ${INSTANCES}
	do
		${TDAEMON} ${TCTL} start $(basename ${inst} .lua)
	done
}

tarantool_stop()
{
	echo "tarantool: Stopping instances"
	for inst in ${INSTANCES}
	do
		${TDAEMON} ${TCTL} stop $(basename ${inst} .lua)
	done
}

tarantool_restart()
{
	tarantool_stop
	tarantool_start
}

run_rc_command "$1"

Youez - 2016 - github.com/yon3zu
LinuXploit