HEX
Server: Apache/2
System: Linux ctr1224126.novalocal 4.9.241-37.el7.x86_64 #1 SMP Mon Nov 2 13:55:04 UTC 2020 x86_64
User: gokitchen (1017)
PHP: 8.0.30
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: //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'"

  eval program_start $OPTIONS
}

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

exit $?