Skip to content

Instantly share code, notes, and snippets.

@uzziz
uzziz / gist:f121acdf6d910fbaea7a10552690362f
Created April 22, 2026 19:49
Zaya Agent one-command VPS setup
#!/usr/bin/env bash
# Zaya Agent — beginner-friendly one-command installer
set -euo pipefail
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
RED='\033[0;31m'
NC='\033[0m'
log_info() { echo -e "${GREEN}[INFO]${NC} $1"; }
log_warn() { echo -e "${YELLOW}[WARN]${NC} $1"; }