403 Forbidden


Disable Functions:
Path : /bin/
File Upload :
Command :
Current File : //bin/kcarectl

#!/bin/bash

path="/usr/libexec/kcare/python/"
export PYTHONPATH="$path:$PYTHONPATH"

python="$(command -v python3 || command -v /usr/libexec/platform-python || command -v python2)"

if [ "$python" ]; then
  cmd=("$python" "-m" "kcarectl.__main__")
else
  >&2 echo error: python3 or python2 executables were not found
  exit 1
fi

env_path="/etc/sysconfig/kcare/kcarectl.env"
if [ -f "$env_path" ]; then
  set -a
  . "$env_path"
  set +a
fi

exec "${cmd[@]}" "$@"

404 Not Found
[ LogOut ]