mirror of https://github.com/telemt/telemt.git
Update install.sh
This commit is contained in:
parent
1e000c2e7e
commit
dc3363aa0d
565
install.sh
565
install.sh
|
|
@ -1,154 +1,190 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
# --- Global Configurations ---
|
|
||||||
REPO="${REPO:-telemt/telemt}"
|
REPO="${REPO:-telemt/telemt}"
|
||||||
BIN_NAME="${BIN_NAME:-telemt}"
|
BIN_NAME="${BIN_NAME:-telemt}"
|
||||||
INSTALL_DIR="${INSTALL_DIR:-/bin}"
|
INSTALL_DIR="${INSTALL_DIR:-/bin}"
|
||||||
CONFIG_DIR="${CONFIG_DIR:-/etc/telemt}"
|
CONFIG_DIR="${CONFIG_DIR:-/etc/telemt}"
|
||||||
CONFIG_FILE="${CONFIG_FILE:-${CONFIG_DIR}/telemt.toml}"
|
CONFIG_FILE="${CONFIG_FILE:-${CONFIG_DIR}/telemt.toml}"
|
||||||
WORK_DIR="${WORK_DIR:-/opt/telemt}"
|
WORK_DIR="${WORK_DIR:-/opt/telemt}"
|
||||||
|
TLS_DOMAIN="${TLS_DOMAIN:-petrovich.ru}"
|
||||||
SERVICE_NAME="telemt"
|
SERVICE_NAME="telemt"
|
||||||
TEMP_DIR=""
|
TEMP_DIR=""
|
||||||
SUDO=""
|
SUDO=""
|
||||||
|
CONFIG_PARENT_DIR=""
|
||||||
|
SERVICE_START_FAILED=0
|
||||||
|
|
||||||
# --- Argument Parsing ---
|
|
||||||
ACTION="install"
|
ACTION="install"
|
||||||
TARGET_VERSION="${VERSION:-latest}"
|
TARGET_VERSION="${VERSION:-latest}"
|
||||||
|
|
||||||
while [ $# -gt 0 ]; do
|
while [ $# -gt 0 ]; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
-h|--help)
|
-h|--help) ACTION="help"; shift ;;
|
||||||
ACTION="help"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
uninstall|--uninstall)
|
uninstall|--uninstall)
|
||||||
[ "$ACTION" != "purge" ] && ACTION="uninstall"
|
if [ "$ACTION" != "purge" ]; then ACTION="uninstall"; fi
|
||||||
shift
|
shift ;;
|
||||||
;;
|
purge|--purge) ACTION="purge"; shift ;;
|
||||||
--purge)
|
install|--install) ACTION="install"; shift ;;
|
||||||
ACTION="purge"
|
-*) printf '[ERROR] Unknown option: %s\n' "$1" >&2; exit 1 ;;
|
||||||
shift
|
|
||||||
;;
|
|
||||||
install|--install)
|
|
||||||
ACTION="install"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
-*)
|
|
||||||
printf '[ERROR] Unknown option: %s\n' "$1" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
*)
|
*)
|
||||||
if [ "$ACTION" = "install" ]; then
|
if [ "$ACTION" = "install" ]; then TARGET_VERSION="$1"
|
||||||
TARGET_VERSION="$1"
|
else printf '[WARNING] Ignoring extra argument: %s\n' "$1" >&2; fi
|
||||||
fi
|
shift ;;
|
||||||
shift
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
# --- Core Functions ---
|
say() {
|
||||||
say() { printf '[INFO] %s\n' "$*"; }
|
if [ "$#" -eq 0 ] || [ -z "${1:-}" ]; then
|
||||||
|
printf '\n'
|
||||||
|
else
|
||||||
|
printf '[INFO] %s\n' "$*"
|
||||||
|
fi
|
||||||
|
}
|
||||||
die() { printf '[ERROR] %s\n' "$*" >&2; exit 1; }
|
die() { printf '[ERROR] %s\n' "$*" >&2; exit 1; }
|
||||||
|
|
||||||
|
write_root() { $SUDO sh -c 'cat > "$1"' _ "$1"; }
|
||||||
|
|
||||||
cleanup() {
|
cleanup() {
|
||||||
if [ -n "${TEMP_DIR:-}" ] && [ -d "$TEMP_DIR" ]; then
|
if [ -n "${TEMP_DIR:-}" ] && [ -d "$TEMP_DIR" ]; then
|
||||||
rm -rf -- "$TEMP_DIR"
|
rm -rf -- "$TEMP_DIR"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
trap cleanup EXIT INT TERM
|
trap cleanup EXIT INT TERM
|
||||||
|
|
||||||
show_help() {
|
show_help() {
|
||||||
say "Usage: $0 [version | install | uninstall | --purge | --help]"
|
say "Usage: $0 [ <version> | install | uninstall | purge | --help ]"
|
||||||
say " version Install specific version (e.g. 1.0.0, default: latest)"
|
say " <version> Install specific version (e.g. 3.3.15, default: latest)"
|
||||||
say " uninstall Remove the binary and service (keeps config)"
|
say " install Install the latest version"
|
||||||
say " --purge Remove everything including configuration"
|
say " uninstall Remove the binary and service (keeps config and user)"
|
||||||
|
say " purge Remove everything including configuration, data, and user"
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
user_exists() {
|
check_os_entity() {
|
||||||
if command -v getent >/dev/null 2>&1; then
|
if command -v getent >/dev/null 2>&1; then getent "$1" "$2" >/dev/null 2>&1
|
||||||
getent passwd "$1" >/dev/null 2>&1
|
else grep -q "^${2}:" "/etc/$1" 2>/dev/null; fi
|
||||||
|
}
|
||||||
|
|
||||||
|
normalize_path() {
|
||||||
|
printf '%s\n' "$1" | tr -s '/' | sed 's|/$||; s|^$|/|'
|
||||||
|
}
|
||||||
|
|
||||||
|
get_realpath() {
|
||||||
|
path_in="$1"
|
||||||
|
case "$path_in" in /*) ;; *) path_in="$(pwd)/$path_in" ;; esac
|
||||||
|
|
||||||
|
if command -v realpath >/dev/null 2>&1; then
|
||||||
|
if realpath_out="$(realpath -m "$path_in" 2>/dev/null)"; then
|
||||||
|
printf '%s\n' "$realpath_out"
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v readlink >/dev/null 2>&1; then
|
||||||
|
resolved_path="$(readlink -f "$path_in" 2>/dev/null || true)"
|
||||||
|
if [ -n "$resolved_path" ]; then
|
||||||
|
printf '%s\n' "$resolved_path"
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
d="${path_in%/*}"; b="${path_in##*/}"
|
||||||
|
if [ -z "$d" ]; then d="/"; fi
|
||||||
|
if [ "$d" = "$path_in" ]; then d="/"; b="$path_in"; fi
|
||||||
|
|
||||||
|
if [ -d "$d" ]; then
|
||||||
|
abs_d="$(cd "$d" >/dev/null 2>&1 && pwd || true)"
|
||||||
|
if [ -n "$abs_d" ]; then
|
||||||
|
if [ "$b" = "." ] || [ -z "$b" ]; then printf '%s\n' "$abs_d"
|
||||||
|
elif [ "$abs_d" = "/" ]; then printf '/%s\n' "$b"
|
||||||
|
else printf '%s/%s\n' "$abs_d" "$b"; fi
|
||||||
|
else
|
||||||
|
normalize_path "$path_in"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
grep -q "^${1}:" /etc/passwd 2>/dev/null
|
normalize_path "$path_in"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
group_exists() {
|
get_svc_mgr() {
|
||||||
if command -v getent >/dev/null 2>&1; then
|
if command -v systemctl >/dev/null 2>&1 && [ -d /run/systemd/system ]; then echo "systemd"
|
||||||
getent group "$1" >/dev/null 2>&1
|
elif command -v rc-service >/dev/null 2>&1; then echo "openrc"
|
||||||
else
|
else echo "none"; fi
|
||||||
grep -q "^${1}:" /etc/group 2>/dev/null
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
verify_common() {
|
verify_common() {
|
||||||
[ -z "$BIN_NAME" ] && die "BIN_NAME cannot be empty."
|
[ -n "$BIN_NAME" ] || die "BIN_NAME cannot be empty."
|
||||||
[ -z "$INSTALL_DIR" ] && die "INSTALL_DIR cannot be empty."
|
[ -n "$INSTALL_DIR" ] || die "INSTALL_DIR cannot be empty."
|
||||||
[ -z "$CONFIG_DIR" ] && die "CONFIG_DIR cannot be empty."
|
[ -n "$CONFIG_DIR" ] || die "CONFIG_DIR cannot be empty."
|
||||||
|
[ -n "$CONFIG_FILE" ] || die "CONFIG_FILE cannot be empty."
|
||||||
|
|
||||||
|
case "${INSTALL_DIR}${CONFIG_DIR}${WORK_DIR}${CONFIG_FILE}" in
|
||||||
|
*[!a-zA-Z0-9_./-]*) die "Invalid characters in paths. Only alphanumeric, _, ., -, and / allowed." ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
case "$TARGET_VERSION" in *[!a-zA-Z0-9_.-]*) die "Invalid characters in version." ;; esac
|
||||||
|
case "$BIN_NAME" in *[!a-zA-Z0-9_-]*) die "Invalid characters in BIN_NAME." ;; esac
|
||||||
|
|
||||||
|
INSTALL_DIR="$(get_realpath "$INSTALL_DIR")"
|
||||||
|
CONFIG_DIR="$(get_realpath "$CONFIG_DIR")"
|
||||||
|
WORK_DIR="$(get_realpath "$WORK_DIR")"
|
||||||
|
CONFIG_FILE="$(get_realpath "$CONFIG_FILE")"
|
||||||
|
|
||||||
|
CONFIG_PARENT_DIR="${CONFIG_FILE%/*}"
|
||||||
|
if [ -z "$CONFIG_PARENT_DIR" ]; then CONFIG_PARENT_DIR="/"; fi
|
||||||
|
if [ "$CONFIG_PARENT_DIR" = "$CONFIG_FILE" ]; then CONFIG_PARENT_DIR="."; fi
|
||||||
|
|
||||||
if [ "$(id -u)" -eq 0 ]; then
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
SUDO=""
|
SUDO=""
|
||||||
else
|
else
|
||||||
if ! command -v sudo >/dev/null 2>&1; then
|
command -v sudo >/dev/null 2>&1 || die "This script requires root or sudo. Neither found."
|
||||||
die "This script requires root or sudo. Neither found."
|
|
||||||
fi
|
|
||||||
SUDO="sudo"
|
SUDO="sudo"
|
||||||
say "sudo is available. Caching credentials..."
|
if ! sudo -n true 2>/dev/null; then
|
||||||
if ! sudo -v; then
|
if ! [ -t 0 ]; then
|
||||||
die "Failed to cache sudo credentials"
|
die "sudo requires a password, but no TTY detected. Aborting to prevent hang."
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "${INSTALL_DIR}${CONFIG_DIR}${WORK_DIR}" in
|
if [ -n "$SUDO" ]; then
|
||||||
*[!a-zA-Z0-9_./-]*)
|
if $SUDO sh -c '[ -d "$1" ]' _ "$CONFIG_FILE"; then
|
||||||
die "Invalid characters in path variables. Only alphanumeric, _, ., -, and / are allowed."
|
die "Safety check failed: CONFIG_FILE '$CONFIG_FILE' is a directory."
|
||||||
;;
|
fi
|
||||||
esac
|
elif [ -d "$CONFIG_FILE" ]; then
|
||||||
|
die "Safety check failed: CONFIG_FILE '$CONFIG_FILE' is a directory."
|
||||||
case "$BIN_NAME" in
|
fi
|
||||||
*[!a-zA-Z0-9_-]*) die "Invalid characters in BIN_NAME: $BIN_NAME" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
for path in "$CONFIG_DIR" "$WORK_DIR"; do
|
|
||||||
check_path="$path"
|
|
||||||
|
|
||||||
while [ "$check_path" != "/" ] && [ "${check_path%"/"}" != "$check_path" ]; do
|
|
||||||
check_path="${check_path%"/"}"
|
|
||||||
done
|
|
||||||
[ -z "$check_path" ] && check_path="/"
|
|
||||||
|
|
||||||
|
for path in "$CONFIG_DIR" "$CONFIG_PARENT_DIR" "$WORK_DIR"; do
|
||||||
|
check_path="$(get_realpath "$path")"
|
||||||
case "$check_path" in
|
case "$check_path" in
|
||||||
/|/bin|/sbin|/usr|/usr/bin|/usr/local|/etc|/opt|/var|/home|/root|/tmp)
|
/|/bin|/sbin|/usr|/usr/bin|/usr/sbin|/usr/local|/usr/local/bin|/usr/local/sbin|/usr/local/etc|/usr/local/share|/etc|/var|/var/lib|/var/log|/var/run|/home|/root|/tmp|/lib|/lib64|/opt|/run|/boot|/dev|/sys|/proc)
|
||||||
die "Safety check failed: '$path' is a critical system directory."
|
die "Safety check failed: '$path' (resolved to '$check_path') is a critical system directory." ;;
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
for cmd in uname grep find rm chown chmod mv head mktemp; do
|
check_install_dir="$(get_realpath "$INSTALL_DIR")"
|
||||||
|
case "$check_install_dir" in
|
||||||
|
/|/etc|/var|/home|/root|/tmp|/usr|/usr/local|/opt|/boot|/dev|/sys|/proc|/run)
|
||||||
|
die "Safety check failed: INSTALL_DIR '$INSTALL_DIR' is a critical system directory." ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
for cmd in id uname grep find rm chown chmod mv mktemp mkdir tr dd sed ps head sleep cat tar gzip rmdir; do
|
||||||
command -v "$cmd" >/dev/null 2>&1 || die "Required command not found: $cmd"
|
command -v "$cmd" >/dev/null 2>&1 || die "Required command not found: $cmd"
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
verify_install_deps() {
|
verify_install_deps() {
|
||||||
if ! command -v curl >/dev/null 2>&1 && ! command -v wget >/dev/null 2>&1; then
|
command -v curl >/dev/null 2>&1 || command -v wget >/dev/null 2>&1 || die "Neither curl nor wget is installed."
|
||||||
die "Neither curl nor wget is installed."
|
|
||||||
fi
|
|
||||||
command -v tar >/dev/null 2>&1 || die "Required command not found: tar"
|
|
||||||
command -v gzip >/dev/null 2>&1 || die "Required command not found: gzip"
|
|
||||||
command -v cp >/dev/null 2>&1 || command -v install >/dev/null 2>&1 || die "Need cp or install"
|
command -v cp >/dev/null 2>&1 || command -v install >/dev/null 2>&1 || die "Need cp or install"
|
||||||
|
|
||||||
if ! command -v setcap >/dev/null 2>&1; then
|
if ! command -v setcap >/dev/null 2>&1; then
|
||||||
say "setcap is missing. Installing required capability tools..."
|
|
||||||
if command -v apk >/dev/null 2>&1; then
|
if command -v apk >/dev/null 2>&1; then
|
||||||
$SUDO apk add --no-cache libcap || die "Failed to install libcap"
|
$SUDO apk add --no-cache libcap-utils >/dev/null 2>&1 || $SUDO apk add --no-cache libcap >/dev/null 2>&1 || true
|
||||||
elif command -v apt-get >/dev/null 2>&1; then
|
elif command -v apt-get >/dev/null 2>&1; then
|
||||||
$SUDO apt-get update -qq && $SUDO apt-get install -y -qq libcap2-bin || die "Failed to install libcap2-bin"
|
$SUDO apt-get update -q >/dev/null 2>&1 || true
|
||||||
elif command -v dnf >/dev/null 2>&1 || command -v yum >/dev/null 2>&1; then
|
$SUDO apt-get install -y -q libcap2-bin >/dev/null 2>&1 || true
|
||||||
$SUDO ${YUM_CMD:-yum} install -y -q libcap || die "Failed to install libcap"
|
elif command -v dnf >/dev/null 2>&1; then $SUDO dnf install -y -q libcap >/dev/null 2>&1 || true
|
||||||
else
|
elif command -v yum >/dev/null 2>&1; then $SUDO yum install -y -q libcap >/dev/null 2>&1 || true
|
||||||
die "Cannot install 'setcap'. Package manager not found. Please install libcap manually."
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
@ -163,122 +199,96 @@ detect_arch() {
|
||||||
}
|
}
|
||||||
|
|
||||||
detect_libc() {
|
detect_libc() {
|
||||||
if command -v ldd >/dev/null 2>&1 && ldd --version 2>&1 | grep -qi musl; then
|
|
||||||
echo "musl"; return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
if grep -q '^ID=alpine' /etc/os-release 2>/dev/null || grep -q '^ID="alpine"' /etc/os-release 2>/dev/null; then
|
|
||||||
echo "musl"; return 0
|
|
||||||
fi
|
|
||||||
for f in /lib/ld-musl-*.so.* /lib64/ld-musl-*.so.*; do
|
for f in /lib/ld-musl-*.so.* /lib64/ld-musl-*.so.*; do
|
||||||
if [ -e "$f" ]; then
|
if [ -e "$f" ]; then echo "musl"; return 0; fi
|
||||||
echo "musl"; return 0
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
|
if grep -qE '^ID="?alpine"?' /etc/os-release 2>/dev/null; then echo "musl"; return 0; fi
|
||||||
|
if command -v ldd >/dev/null 2>&1 && (ldd --version 2>&1 || true) | grep -qi musl; then echo "musl"; return 0; fi
|
||||||
echo "gnu"
|
echo "gnu"
|
||||||
}
|
}
|
||||||
|
|
||||||
fetch_file() {
|
fetch_file() {
|
||||||
fetch_url="$1"
|
if command -v curl >/dev/null 2>&1; then curl -fsSL "$1" -o "$2"
|
||||||
fetch_out="$2"
|
else wget -q -O "$2" "$1"; fi
|
||||||
|
|
||||||
if command -v curl >/dev/null 2>&1; then
|
|
||||||
curl -fsSL "$fetch_url" -o "$fetch_out" || return 1
|
|
||||||
elif command -v wget >/dev/null 2>&1; then
|
|
||||||
wget -qO "$fetch_out" "$fetch_url" || return 1
|
|
||||||
else
|
|
||||||
die "curl or wget required"
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ensure_user_group() {
|
ensure_user_group() {
|
||||||
nologin_bin="/bin/false"
|
nologin_bin="$(command -v nologin 2>/dev/null || command -v false 2>/dev/null || echo /bin/false)"
|
||||||
|
|
||||||
cmd_nologin="$(command -v nologin 2>/dev/null || true)"
|
if ! check_os_entity group telemt; then
|
||||||
if [ -n "$cmd_nologin" ] && [ -x "$cmd_nologin" ]; then
|
if command -v groupadd >/dev/null 2>&1; then $SUDO groupadd -r telemt
|
||||||
nologin_bin="$cmd_nologin"
|
elif command -v addgroup >/dev/null 2>&1; then $SUDO addgroup -S telemt
|
||||||
else
|
else die "Cannot create group"; fi
|
||||||
for bin in /sbin/nologin /usr/sbin/nologin; do
|
|
||||||
if [ -x "$bin" ]; then
|
|
||||||
nologin_bin="$bin"
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! group_exists telemt; then
|
if ! check_os_entity passwd telemt; then
|
||||||
if command -v groupadd >/dev/null 2>&1; then
|
|
||||||
$SUDO groupadd -r telemt || die "Failed to create group via groupadd"
|
|
||||||
elif command -v addgroup >/dev/null 2>&1; then
|
|
||||||
$SUDO addgroup -S telemt || die "Failed to create group via addgroup"
|
|
||||||
else
|
|
||||||
die "Cannot create group: neither groupadd nor addgroup found"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if ! user_exists telemt; then
|
|
||||||
if command -v useradd >/dev/null 2>&1; then
|
if command -v useradd >/dev/null 2>&1; then
|
||||||
$SUDO useradd -r -g telemt -d "$WORK_DIR" -s "$nologin_bin" -c "Telemt Proxy" telemt || die "Failed to create user via useradd"
|
$SUDO useradd -r -g telemt -d "$WORK_DIR" -s "$nologin_bin" -c "Telemt Proxy" telemt
|
||||||
elif command -v adduser >/dev/null 2>&1; then
|
elif command -v adduser >/dev/null 2>&1; then
|
||||||
$SUDO adduser -S -D -H -h "$WORK_DIR" -s "$nologin_bin" -G telemt telemt || die "Failed to create user via adduser"
|
if adduser --help 2>&1 | grep -q -- '-S'; then
|
||||||
else
|
$SUDO adduser -S -D -H -h "$WORK_DIR" -s "$nologin_bin" -G telemt telemt
|
||||||
die "Cannot create user: neither useradd nor adduser found"
|
else
|
||||||
fi
|
$SUDO adduser --system --home "$WORK_DIR" --shell "$nologin_bin" --no-create-home --ingroup telemt --disabled-password telemt
|
||||||
|
fi
|
||||||
|
else die "Cannot create user"; fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
setup_dirs() {
|
setup_dirs() {
|
||||||
say "Setting up directories..."
|
$SUDO mkdir -p "$WORK_DIR" "$CONFIG_DIR" "$CONFIG_PARENT_DIR" || die "Failed to create directories"
|
||||||
$SUDO mkdir -p "$WORK_DIR" "$CONFIG_DIR" || die "Failed to create directories"
|
|
||||||
$SUDO chown telemt:telemt "$WORK_DIR" || die "Failed to set owner on WORK_DIR"
|
$SUDO chown telemt:telemt "$WORK_DIR" && $SUDO chmod 750 "$WORK_DIR"
|
||||||
$SUDO chmod 750 "$WORK_DIR" || die "Failed to set permissions on WORK_DIR"
|
$SUDO chown root:telemt "$CONFIG_DIR" && $SUDO chmod 750 "$CONFIG_DIR"
|
||||||
|
|
||||||
|
if [ "$CONFIG_PARENT_DIR" != "$CONFIG_DIR" ] && [ "$CONFIG_PARENT_DIR" != "." ] && [ "$CONFIG_PARENT_DIR" != "/" ]; then
|
||||||
|
$SUDO chown root:telemt "$CONFIG_PARENT_DIR" && $SUDO chmod 750 "$CONFIG_PARENT_DIR"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
stop_service() {
|
stop_service() {
|
||||||
say "Stopping service if running..."
|
svc="$(get_svc_mgr)"
|
||||||
if command -v systemctl >/dev/null 2>&1 && [ -d /run/systemd/system ]; then
|
if [ "$svc" = "systemd" ] && systemctl is-active --quiet "$SERVICE_NAME" 2>/dev/null; then
|
||||||
$SUDO systemctl stop "$SERVICE_NAME" 2>/dev/null || true
|
$SUDO systemctl stop "$SERVICE_NAME" 2>/dev/null || true
|
||||||
elif command -v rc-service >/dev/null 2>&1; then
|
elif [ "$svc" = "openrc" ] && rc-service "$SERVICE_NAME" status >/dev/null 2>&1; then
|
||||||
$SUDO rc-service "$SERVICE_NAME" stop 2>/dev/null || true
|
$SUDO rc-service "$SERVICE_NAME" stop 2>/dev/null || true
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
install_binary() {
|
install_binary() {
|
||||||
bin_src="$1"
|
bin_src="$1"; bin_dst="$2"
|
||||||
bin_dst="$2"
|
if [ -e "$INSTALL_DIR" ] && [ ! -d "$INSTALL_DIR" ]; then
|
||||||
|
die "'$INSTALL_DIR' is not a directory."
|
||||||
|
fi
|
||||||
|
|
||||||
$SUDO mkdir -p "$INSTALL_DIR" || die "Failed to create install directory"
|
$SUDO mkdir -p "$INSTALL_DIR" || die "Failed to create install directory"
|
||||||
if command -v install >/dev/null 2>&1; then
|
if command -v install >/dev/null 2>&1; then
|
||||||
$SUDO install -m 0755 "$bin_src" "$bin_dst" || die "Failed to install binary"
|
$SUDO install -m 0755 "$bin_src" "$bin_dst" || die "Failed to install binary"
|
||||||
else
|
else
|
||||||
$SUDO rm -f "$bin_dst"
|
$SUDO rm -f "$bin_dst" 2>/dev/null || true
|
||||||
$SUDO cp "$bin_src" "$bin_dst" || die "Failed to copy binary"
|
$SUDO cp "$bin_src" "$bin_dst" && $SUDO chmod 0755 "$bin_dst" || die "Failed to copy binary"
|
||||||
$SUDO chmod 0755 "$bin_dst" || die "Failed to set permissions"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -x "$bin_dst" ]; then
|
$SUDO sh -c '[ -x "$1" ]' _ "$bin_dst" || die "Binary not executable: $bin_dst"
|
||||||
die "Failed to install binary or it is not executable: $bin_dst"
|
|
||||||
fi
|
|
||||||
|
|
||||||
say "Granting network bind capabilities to bind port 443..."
|
if command -v setcap >/dev/null 2>&1; then
|
||||||
if ! $SUDO setcap cap_net_bind_service=+ep "$bin_dst" 2>/dev/null; then
|
$SUDO setcap cap_net_bind_service=+ep "$bin_dst" 2>/dev/null || true
|
||||||
say "[WARNING] Failed to apply setcap. The service will NOT be able to open port 443!"
|
|
||||||
say "[WARNING] This usually happens inside unprivileged Docker/LXC containers."
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
generate_secret() {
|
generate_secret() {
|
||||||
if command -v openssl >/dev/null 2>&1; then
|
secret="$(command -v openssl >/dev/null 2>&1 && openssl rand -hex 16 2>/dev/null || true)"
|
||||||
secret="$(openssl rand -hex 16 2>/dev/null)" && [ -n "$secret" ] && { echo "$secret"; return 0; }
|
if [ -z "$secret" ] || [ "${#secret}" -ne 32 ]; then
|
||||||
|
if command -v od >/dev/null 2>&1; then secret="$(dd if=/dev/urandom bs=16 count=1 2>/dev/null | od -An -tx1 | tr -d ' \n')"
|
||||||
|
elif command -v hexdump >/dev/null 2>&1; then secret="$(dd if=/dev/urandom bs=16 count=1 2>/dev/null | hexdump -e '1/1 "%02x"')"
|
||||||
|
elif command -v xxd >/dev/null 2>&1; then secret="$(dd if=/dev/urandom bs=16 count=1 2>/dev/null | xxd -p | tr -d '\n')"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
if command -v xxd >/dev/null 2>&1; then
|
if [ "${#secret}" -eq 32 ]; then echo "$secret"; else return 1; fi
|
||||||
secret="$(dd if=/dev/urandom bs=1 count=16 2>/dev/null | xxd -p | tr -d '\n')" && [ -n "$secret" ] && { echo "$secret"; return 0; }
|
|
||||||
fi
|
|
||||||
secret="$(dd if=/dev/urandom bs=1 count=16 2>/dev/null | od -An -tx1 | tr -d ' \n')" && [ -n "$secret" ] && { echo "$secret"; return 0; }
|
|
||||||
return 1
|
|
||||||
}
|
}
|
||||||
|
|
||||||
generate_config_content() {
|
generate_config_content() {
|
||||||
|
escaped_tls_domain="$(printf '%s\n' "$TLS_DOMAIN" | tr -d '[:cntrl:]' | sed 's/\\/\\\\/g; s/"/\\"/g')"
|
||||||
|
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
[general]
|
[general]
|
||||||
use_middle_proxy = false
|
use_middle_proxy = false
|
||||||
|
|
@ -297,7 +307,7 @@ listen = "127.0.0.1:9091"
|
||||||
whitelist = ["127.0.0.1/32"]
|
whitelist = ["127.0.0.1/32"]
|
||||||
|
|
||||||
[censorship]
|
[censorship]
|
||||||
tls_domain = "petrovich.ru"
|
tls_domain = "${escaped_tls_domain}"
|
||||||
|
|
||||||
[access.users]
|
[access.users]
|
||||||
hello = "$1"
|
hello = "$1"
|
||||||
|
|
@ -305,44 +315,38 @@ EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
install_config() {
|
install_config() {
|
||||||
config_exists=0
|
|
||||||
|
|
||||||
if [ -n "$SUDO" ]; then
|
if [ -n "$SUDO" ]; then
|
||||||
$SUDO sh -c "[ -f '$CONFIG_FILE' ]" 2>/dev/null && config_exists=1 || true
|
if $SUDO sh -c '[ -f "$1" ]' _ "$CONFIG_FILE"; then
|
||||||
else
|
say " -> Config already exists at $CONFIG_FILE. Skipping creation."
|
||||||
[ -f "$CONFIG_FILE" ] && config_exists=1 || true
|
return 0
|
||||||
fi
|
fi
|
||||||
|
elif [ -f "$CONFIG_FILE" ]; then
|
||||||
if [ "$config_exists" -eq 1 ]; then
|
say " -> Config already exists at $CONFIG_FILE. Skipping creation."
|
||||||
say "Config already exists, skipping generation."
|
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
toml_secret="$(generate_secret)" || die "Failed to generate secret"
|
toml_secret="$(generate_secret)" || die "Failed to generate secret."
|
||||||
say "Creating config at $CONFIG_FILE..."
|
|
||||||
|
|
||||||
tmp_conf="$(mktemp "${TEMP_DIR:-/tmp}/telemt_conf.XXXXXX")" || die "Failed to create temp config"
|
generate_config_content "$toml_secret" | write_root "$CONFIG_FILE" || die "Failed to install config"
|
||||||
generate_config_content "$toml_secret" > "$tmp_conf" || die "Failed to write temp config"
|
$SUDO chown root:telemt "$CONFIG_FILE" && $SUDO chmod 640 "$CONFIG_FILE"
|
||||||
|
|
||||||
$SUDO mv "$tmp_conf" "$CONFIG_FILE" || die "Failed to install config file"
|
say " -> Config created successfully."
|
||||||
$SUDO chown root:telemt "$CONFIG_FILE" || die "Failed to set owner"
|
say " -> Generated secret for default user 'hello': $toml_secret"
|
||||||
$SUDO chmod 640 "$CONFIG_FILE" || die "Failed to set config permissions"
|
|
||||||
|
|
||||||
say "Secret for user 'hello': $toml_secret"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
generate_systemd_content() {
|
generate_systemd_content() {
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Telemt Proxy Service
|
Description=Telemt
|
||||||
After=network-online.target
|
After=network-online.target
|
||||||
|
Wants=network-online.target
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=simple
|
Type=simple
|
||||||
User=telemt
|
User=telemt
|
||||||
Group=telemt
|
Group=telemt
|
||||||
WorkingDirectory=$WORK_DIR
|
WorkingDirectory=$WORK_DIR
|
||||||
ExecStart=${INSTALL_DIR}/${BIN_NAME} ${CONFIG_FILE}
|
ExecStart="${INSTALL_DIR}/${BIN_NAME}" "${CONFIG_FILE}"
|
||||||
Restart=on-failure
|
Restart=on-failure
|
||||||
LimitNOFILE=65536
|
LimitNOFILE=65536
|
||||||
AmbientCapabilities=CAP_NET_BIND_SERVICE
|
AmbientCapabilities=CAP_NET_BIND_SERVICE
|
||||||
|
|
@ -370,111 +374,119 @@ EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
install_service() {
|
install_service() {
|
||||||
if command -v systemctl >/dev/null 2>&1 && [ -d /run/systemd/system ]; then
|
svc="$(get_svc_mgr)"
|
||||||
say "Installing systemd service..."
|
if [ "$svc" = "systemd" ]; then
|
||||||
tmp_svc="$(mktemp "${TEMP_DIR:-/tmp}/${SERVICE_NAME}.service.XXXXXX")" || die "Failed to create temp service"
|
generate_systemd_content | write_root "/etc/systemd/system/${SERVICE_NAME}.service"
|
||||||
generate_systemd_content > "$tmp_svc" || die "Failed to generate service content"
|
$SUDO chown root:root "/etc/systemd/system/${SERVICE_NAME}.service" && $SUDO chmod 644 "/etc/systemd/system/${SERVICE_NAME}.service"
|
||||||
|
|
||||||
$SUDO mv "$tmp_svc" "/etc/systemd/system/${SERVICE_NAME}.service" || die "Failed to move service file"
|
$SUDO systemctl daemon-reload || true
|
||||||
$SUDO chown root:root "/etc/systemd/system/${SERVICE_NAME}.service"
|
$SUDO systemctl enable "$SERVICE_NAME" || true
|
||||||
$SUDO chmod 644 "/etc/systemd/system/${SERVICE_NAME}.service"
|
|
||||||
|
|
||||||
$SUDO systemctl daemon-reload || die "Failed to reload systemd"
|
if ! $SUDO systemctl start "$SERVICE_NAME"; then
|
||||||
$SUDO systemctl enable "$SERVICE_NAME" || die "Failed to enable service"
|
say "[WARNING] Failed to start service"
|
||||||
$SUDO systemctl start "$SERVICE_NAME" || die "Failed to start service"
|
SERVICE_START_FAILED=1
|
||||||
|
fi
|
||||||
|
elif [ "$svc" = "openrc" ]; then
|
||||||
|
generate_openrc_content | write_root "/etc/init.d/${SERVICE_NAME}"
|
||||||
|
$SUDO chown root:root "/etc/init.d/${SERVICE_NAME}" && $SUDO chmod 0755 "/etc/init.d/${SERVICE_NAME}"
|
||||||
|
|
||||||
elif command -v rc-update >/dev/null 2>&1; then
|
$SUDO rc-update add "$SERVICE_NAME" default 2>/dev/null || true
|
||||||
say "Installing OpenRC service..."
|
|
||||||
tmp_svc="$(mktemp "${TEMP_DIR:-/tmp}/${SERVICE_NAME}.init.XXXXXX")" || die "Failed to create temp file"
|
|
||||||
generate_openrc_content > "$tmp_svc" || die "Failed to generate init content"
|
|
||||||
|
|
||||||
$SUDO mv "$tmp_svc" "/etc/init.d/${SERVICE_NAME}" || die "Failed to move service file"
|
if ! $SUDO rc-service "$SERVICE_NAME" start 2>/dev/null; then
|
||||||
$SUDO chown root:root "/etc/init.d/${SERVICE_NAME}"
|
say "[WARNING] Failed to start service"
|
||||||
$SUDO chmod 0755 "/etc/init.d/${SERVICE_NAME}"
|
SERVICE_START_FAILED=1
|
||||||
|
fi
|
||||||
$SUDO rc-update add "$SERVICE_NAME" default 2>/dev/null || die "Failed to register service"
|
|
||||||
$SUDO rc-service "$SERVICE_NAME" start 2>/dev/null || die "Failed to start OpenRC service"
|
|
||||||
else
|
else
|
||||||
say "No service manager found. You can start it manually with:"
|
cmd="\"${INSTALL_DIR}/${BIN_NAME}\" \"${CONFIG_FILE}\""
|
||||||
if [ -n "$SUDO" ]; then
|
if [ -n "$SUDO" ]; then
|
||||||
say " sudo -u telemt ${INSTALL_DIR}/${BIN_NAME} ${CONFIG_FILE}"
|
say " -> Service manager not found. Start manually: sudo -u telemt $cmd"
|
||||||
else
|
else
|
||||||
say " su -s /bin/sh telemt -c '${INSTALL_DIR}/${BIN_NAME} ${CONFIG_FILE}'"
|
say " -> Service manager not found. Start manually: su -s /bin/sh telemt -c '$cmd'"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
kill_user_procs() {
|
kill_user_procs() {
|
||||||
say "Ensuring $BIN_NAME processes are killed..."
|
if command -v pkill >/dev/null 2>&1; then
|
||||||
|
$SUDO pkill -u telemt "$BIN_NAME" 2>/dev/null || true
|
||||||
|
sleep 1
|
||||||
|
$SUDO pkill -9 -u telemt "$BIN_NAME" 2>/dev/null || true
|
||||||
|
else
|
||||||
|
if command -v pgrep >/dev/null 2>&1; then
|
||||||
|
pids="$(pgrep -u telemt 2>/dev/null || true)"
|
||||||
|
else
|
||||||
|
pids="$(ps -u telemt -o pid= 2>/dev/null || true)"
|
||||||
|
fi
|
||||||
|
|
||||||
if pkill_cmd="$(command -v pkill 2>/dev/null)"; then
|
if [ -n "$pids" ]; then
|
||||||
$SUDO "$pkill_cmd" -u telemt "$BIN_NAME" 2>/dev/null || true
|
for pid in $pids; do
|
||||||
sleep 1
|
case "$pid" in ''|*[!0-9]*) continue ;; *) $SUDO kill "$pid" 2>/dev/null || true ;; esac
|
||||||
$SUDO "$pkill_cmd" -9 -u telemt "$BIN_NAME" 2>/dev/null || true
|
done
|
||||||
elif killall_cmd="$(command -v killall 2>/dev/null)"; then
|
sleep 1
|
||||||
$SUDO "$killall_cmd" "$BIN_NAME" 2>/dev/null || true
|
for pid in $pids; do
|
||||||
sleep 1
|
case "$pid" in ''|*[!0-9]*) continue ;; *) $SUDO kill -9 "$pid" 2>/dev/null || true ;; esac
|
||||||
$SUDO "$killall_cmd" -9 "$BIN_NAME" 2>/dev/null || true
|
done
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
uninstall() {
|
uninstall() {
|
||||||
purge_data=0
|
say "Starting uninstallation of $BIN_NAME..."
|
||||||
[ "$ACTION" = "purge" ] && purge_data=1
|
|
||||||
|
|
||||||
say "Uninstalling $BIN_NAME..."
|
say ">>> Stage 1: Stopping services"
|
||||||
stop_service
|
stop_service
|
||||||
|
|
||||||
if command -v systemctl >/dev/null 2>&1 && [ -d /run/systemd/system ]; then
|
say ">>> Stage 2: Removing service configuration"
|
||||||
|
svc="$(get_svc_mgr)"
|
||||||
|
if [ "$svc" = "systemd" ]; then
|
||||||
$SUDO systemctl disable "$SERVICE_NAME" 2>/dev/null || true
|
$SUDO systemctl disable "$SERVICE_NAME" 2>/dev/null || true
|
||||||
$SUDO rm -f "/etc/systemd/system/${SERVICE_NAME}.service"
|
$SUDO rm -f "/etc/systemd/system/${SERVICE_NAME}.service"
|
||||||
$SUDO systemctl daemon-reload || true
|
$SUDO systemctl daemon-reload 2>/dev/null || true
|
||||||
elif command -v rc-update >/dev/null 2>&1; then
|
elif [ "$svc" = "openrc" ]; then
|
||||||
$SUDO rc-update del "$SERVICE_NAME" 2>/dev/null || true
|
$SUDO rc-update del "$SERVICE_NAME" 2>/dev/null || true
|
||||||
$SUDO rm -f "/etc/init.d/${SERVICE_NAME}"
|
$SUDO rm -f "/etc/init.d/${SERVICE_NAME}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
say ">>> Stage 3: Terminating user processes"
|
||||||
kill_user_procs
|
kill_user_procs
|
||||||
|
|
||||||
|
say ">>> Stage 4: Removing binary"
|
||||||
$SUDO rm -f "${INSTALL_DIR}/${BIN_NAME}"
|
$SUDO rm -f "${INSTALL_DIR}/${BIN_NAME}"
|
||||||
|
|
||||||
$SUDO userdel telemt 2>/dev/null || $SUDO deluser telemt 2>/dev/null || true
|
if [ "$ACTION" = "purge" ]; then
|
||||||
$SUDO groupdel telemt 2>/dev/null || $SUDO delgroup telemt 2>/dev/null || true
|
say ">>> Stage 5: Purging configuration, data, and user"
|
||||||
|
|
||||||
if [ "$purge_data" -eq 1 ]; then
|
|
||||||
say "Purging configuration and data..."
|
|
||||||
$SUDO rm -rf "$CONFIG_DIR" "$WORK_DIR"
|
$SUDO rm -rf "$CONFIG_DIR" "$WORK_DIR"
|
||||||
|
$SUDO rm -f "$CONFIG_FILE"
|
||||||
|
if [ "$CONFIG_PARENT_DIR" != "$CONFIG_DIR" ] && [ "$CONFIG_PARENT_DIR" != "." ] && [ "$CONFIG_PARENT_DIR" != "/" ]; then
|
||||||
|
$SUDO rmdir "$CONFIG_PARENT_DIR" 2>/dev/null || true
|
||||||
|
fi
|
||||||
|
$SUDO userdel telemt 2>/dev/null || $SUDO deluser telemt 2>/dev/null || true
|
||||||
|
$SUDO groupdel telemt 2>/dev/null || $SUDO delgroup telemt 2>/dev/null || true
|
||||||
else
|
else
|
||||||
say "Note: Configuration in $CONFIG_DIR was kept. Run with '--purge' to remove it."
|
say "Note: Configuration and user kept. Run with 'purge' to remove completely."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
say "Uninstallation complete."
|
printf '\n====================================================================\n'
|
||||||
|
printf ' UNINSTALLATION COMPLETE\n'
|
||||||
|
printf '====================================================================\n\n'
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
# ============================================================================
|
|
||||||
# Main Entry Point
|
|
||||||
# ============================================================================
|
|
||||||
|
|
||||||
case "$ACTION" in
|
case "$ACTION" in
|
||||||
help)
|
help) show_help ;;
|
||||||
show_help
|
uninstall|purge) verify_common; uninstall ;;
|
||||||
;;
|
|
||||||
uninstall|purge)
|
|
||||||
verify_common
|
|
||||||
uninstall
|
|
||||||
;;
|
|
||||||
install)
|
install)
|
||||||
say "Starting installation..."
|
say "Starting installation of $BIN_NAME (Version: $TARGET_VERSION)"
|
||||||
verify_common
|
|
||||||
verify_install_deps
|
|
||||||
|
|
||||||
ARCH="$(detect_arch)"
|
say ">>> Stage 1: Verifying environment and dependencies"
|
||||||
LIBC="$(detect_libc)"
|
verify_common; verify_install_deps
|
||||||
say "Detected system: $ARCH-linux-$LIBC"
|
|
||||||
|
|
||||||
|
if [ "$TARGET_VERSION" != "latest" ]; then
|
||||||
|
TARGET_VERSION="${TARGET_VERSION#v}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
ARCH="$(detect_arch)"; LIBC="$(detect_libc)"
|
||||||
FILE_NAME="${BIN_NAME}-${ARCH}-linux-${LIBC}.tar.gz"
|
FILE_NAME="${BIN_NAME}-${ARCH}-linux-${LIBC}.tar.gz"
|
||||||
FILE_NAME="$(printf '%s' "$FILE_NAME" | tr -d ' \t\n\r')"
|
|
||||||
|
|
||||||
if [ "$TARGET_VERSION" = "latest" ]; then
|
if [ "$TARGET_VERSION" = "latest" ]; then
|
||||||
DL_URL="https://github.com/${REPO}/releases/latest/download/${FILE_NAME}"
|
DL_URL="https://github.com/${REPO}/releases/latest/download/${FILE_NAME}"
|
||||||
|
|
@ -482,44 +494,63 @@ case "$ACTION" in
|
||||||
DL_URL="https://github.com/${REPO}/releases/download/${TARGET_VERSION}/${FILE_NAME}"
|
DL_URL="https://github.com/${REPO}/releases/download/${TARGET_VERSION}/${FILE_NAME}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
TEMP_DIR="$(mktemp -d)" || die "Failed to create temp directory"
|
say ">>> Stage 2: Downloading archive"
|
||||||
|
TEMP_DIR="$(mktemp -d)" || die "Temp directory creation failed"
|
||||||
if [ -z "$TEMP_DIR" ] || [ ! -d "$TEMP_DIR" ]; then
|
if [ -z "$TEMP_DIR" ] || [ ! -d "$TEMP_DIR" ]; then
|
||||||
die "Temp directory creation failed"
|
die "Temp directory is invalid or was not created"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
say "Downloading from $DL_URL..."
|
fetch_file "$DL_URL" "${TEMP_DIR}/${FILE_NAME}" || die "Download failed"
|
||||||
fetch_file "$DL_URL" "${TEMP_DIR}/archive.tar.gz" || die "Download failed (check version or network)"
|
|
||||||
|
|
||||||
gzip -dc "${TEMP_DIR}/archive.tar.gz" | tar -xf - -C "$TEMP_DIR" || die "Extraction failed"
|
say ">>> Stage 3: Extracting archive"
|
||||||
|
if ! gzip -dc "${TEMP_DIR}/${FILE_NAME}" | tar -xf - -C "$TEMP_DIR" 2>/dev/null; then
|
||||||
|
die "Extraction failed (downloaded archive might be invalid or 404)."
|
||||||
|
fi
|
||||||
|
|
||||||
EXTRACTED_BIN="$(find "$TEMP_DIR" -type f -name "$BIN_NAME" -print 2>/dev/null | head -n 1)"
|
EXTRACTED_BIN="$(find "$TEMP_DIR" -type f -name "$BIN_NAME" -print 2>/dev/null | head -n 1 || true)"
|
||||||
[ -z "$EXTRACTED_BIN" ] && die "Binary '$BIN_NAME' not found in archive"
|
[ -n "$EXTRACTED_BIN" ] || die "Binary '$BIN_NAME' not found in archive"
|
||||||
|
|
||||||
ensure_user_group
|
say ">>> Stage 4: Setting up environment (User, Group, Directories)"
|
||||||
setup_dirs
|
ensure_user_group; setup_dirs; stop_service
|
||||||
stop_service
|
|
||||||
|
|
||||||
say "Installing binary..."
|
say ">>> Stage 5: Installing binary"
|
||||||
install_binary "$EXTRACTED_BIN" "${INSTALL_DIR}/${BIN_NAME}"
|
install_binary "$EXTRACTED_BIN" "${INSTALL_DIR}/${BIN_NAME}"
|
||||||
|
|
||||||
|
say ">>> Stage 6: Generating configuration"
|
||||||
install_config
|
install_config
|
||||||
|
|
||||||
|
say ">>> Stage 7: Installing and starting service"
|
||||||
install_service
|
install_service
|
||||||
|
|
||||||
say ""
|
if [ "${SERVICE_START_FAILED:-0}" -eq 1 ]; then
|
||||||
say "============================================="
|
printf '\n====================================================================\n'
|
||||||
say "Installation complete!"
|
printf ' INSTALLATION COMPLETED WITH WARNINGS\n'
|
||||||
say "============================================="
|
printf '====================================================================\n\n'
|
||||||
if command -v systemctl >/dev/null 2>&1 && [ -d /run/systemd/system ]; then
|
printf 'The service was installed but failed to start automatically.\n'
|
||||||
say "To check the logs, run:"
|
printf 'Please check the logs to determine the issue.\n\n'
|
||||||
say " journalctl -u $SERVICE_NAME -f"
|
|
||||||
say ""
|
|
||||||
fi
|
|
||||||
say "To get user connection links, run:"
|
|
||||||
if command -v jq >/dev/null 2>&1; then
|
|
||||||
say " curl -s http://127.0.0.1:9091/v1/users | jq -r '.data[] | \"User: \\(.username)\\n\\(.links.tls[0] // empty)\"'"
|
|
||||||
else
|
else
|
||||||
say " curl -s http://127.0.0.1:9091/v1/users"
|
printf '\n====================================================================\n'
|
||||||
say " (Note: Install 'jq' package to see the links nicely formatted)"
|
printf ' INSTALLATION SUCCESS\n'
|
||||||
|
printf '====================================================================\n\n'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
svc="$(get_svc_mgr)"
|
||||||
|
if [ "$svc" = "systemd" ]; then
|
||||||
|
printf 'To check the status of your proxy service, run:\n'
|
||||||
|
printf ' systemctl status %s\n\n' "$SERVICE_NAME"
|
||||||
|
elif [ "$svc" = "openrc" ]; then
|
||||||
|
printf 'To check the status of your proxy service, run:\n'
|
||||||
|
printf ' rc-service %s status\n\n' "$SERVICE_NAME"
|
||||||
|
fi
|
||||||
|
|
||||||
|
printf 'To get your user connection links (for Telegram), run:\n'
|
||||||
|
if command -v jq >/dev/null 2>&1; then
|
||||||
|
printf ' curl -s http://127.0.0.1:9091/v1/users | jq -r '\''.data[] | "User: \\(.username)\\n\\(.links.tls[0] // empty)\\n"'\''\n'
|
||||||
|
else
|
||||||
|
printf ' curl -s http://127.0.0.1:9091/v1/users\n'
|
||||||
|
printf ' (Tip: Install '\''jq'\'' for a much cleaner output)\n'
|
||||||
|
fi
|
||||||
|
|
||||||
|
printf '\n====================================================================\n'
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue