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/docker-registry/files/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/ports/sysutils/docker-registry/files/docker_registry.in
#!/bin/sh

# PROVIDE: docker_registry
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add these lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# docker_registry_enable (bool):	Set to NO by default.
#				        Set it to YES to enable docker-registry.
# docker_registry_config (path):	Set to %%PREFIX%%/etc/docker-registry/config.yml
#					by default.
# docker_registry_logfile (path):	Set to /var/log/docker-registry.log
#					by default.
# docker_registry_user (string):	Not set by default.

. /etc/rc.subr

name=registry
rcvar=docker_registry_enable

load_rc_config $name

: ${docker_registry_enable:="NO"}
: ${docker_registry_logfile:="/var/log/docker-registry.log"}
: ${docker_registry_config="%%PREFIX%%/etc/docker-registry/config.yml"}

command=%%PREFIX%%/bin/registry
pidfile=/var/run/docker-registry.pid

command_args="serve $docker_registry_config"

start_cmd="docker_registry_start"

docker_registry_start()
{
	opts="-p $pidfile -o $docker_registry_logfile"
	if [ ! -z $docker_registry_user ]; then
		opts="$opts -u $docker_registry_user"
	fi
	/usr/sbin/daemon $opts $command $command_args
}

run_rc_command "$1"

Youez - 2016 - github.com/yon3zu
LinuXploit