From a9347db9899c4cdd1a073f07fa39902b655aa94f Mon Sep 17 00:00:00 2001 From: vikingowl Date: Sun, 28 Dec 2025 09:04:16 +0100 Subject: [PATCH] fix: update repository URLs to somegit.dev MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update clone URL in README quick start - Update install script URLs to Gitea raw format - Update TYTO_REPO to use somegit.dev domain - Update systemd service documentation URL 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- README.md | 6 +++--- scripts/install.sh | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index ce9f32b..2b0922e 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Tyto is a lightweight, containerized monitoring solution that provides real-time ```bash # Clone the repository -git clone https://github.com/yourusername/tyto.git +git clone https://somegit.dev/vikingowl/tyto.git cd tyto # Start the containers @@ -489,10 +489,10 @@ Install Tyto on any Linux system: ```bash # Server installation -curl -fsSL https://raw.githubusercontent.com/vikingowl/tyto/main/scripts/install.sh | sudo bash +curl -fsSL https://somegit.dev/vikingowl/tyto/raw/branch/main/scripts/install.sh | sudo bash # Agent installation -curl -fsSL https://raw.githubusercontent.com/vikingowl/tyto/main/scripts/install.sh | \ +curl -fsSL https://somegit.dev/vikingowl/tyto/raw/branch/main/scripts/install.sh | \ sudo TYTO_MODE=agent bash ``` diff --git a/scripts/install.sh b/scripts/install.sh index 8501376..04eb730 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -3,9 +3,9 @@ # Tyto System Monitor - Installation Script # # Usage: -# curl -fsSL https://raw.githubusercontent.com/vikingowl/tyto/main/scripts/install.sh | bash +# curl -fsSL https://somegit.dev/vikingowl/tyto/raw/branch/main/scripts/install.sh | bash # or -# wget -qO- https://raw.githubusercontent.com/vikingowl/tyto/main/scripts/install.sh | bash +# wget -qO- https://somegit.dev/vikingowl/tyto/raw/branch/main/scripts/install.sh | bash # # Environment Variables: # TYTO_MODE - Installation mode: standalone (default), server, agent @@ -30,7 +30,7 @@ TYTO_VERSION="${TYTO_VERSION:-latest}" TYTO_INSTALL_DIR="${TYTO_INSTALL_DIR:-/opt/tyto}" TYTO_DATA_DIR="${TYTO_DATA_DIR:-/var/lib/tyto}" TYTO_USER="${TYTO_USER:-tyto}" -TYTO_REPO="vikingowl/tyto" +TYTO_REPO="somegit.dev/vikingowl/tyto" # Logging functions log_info() { echo -e "${BLUE}[INFO]${NC} $*"; } @@ -115,9 +115,9 @@ install_binary() { local download_url if [[ "$TYTO_VERSION" == "latest" ]]; then - download_url="https://github.com/${TYTO_REPO}/releases/latest/download/tyto-${OS}-${ARCH}.tar.gz" + download_url="https://${TYTO_REPO}/releases/latest/download/tyto-${OS}-${ARCH}.tar.gz" else - download_url="https://github.com/${TYTO_REPO}/releases/download/${TYTO_VERSION}/tyto-${OS}-${ARCH}.tar.gz" + download_url="https://${TYTO_REPO}/releases/download/${TYTO_VERSION}/tyto-${OS}-${ARCH}.tar.gz" fi log_info "Downloading Tyto from $download_url..." @@ -208,7 +208,7 @@ create_systemd_service() { cat > "$service_file" << EOF [Unit] Description=Tyto System Monitor -Documentation=https://github.com/vikingowl/tyto +Documentation=https://somegit.dev/vikingowl/tyto After=network.target [Service]