fix: update repository URLs to somegit.dev
- 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 <noreply@anthropic.com>
This commit is contained in:
@@ -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
|
||||
```
|
||||
|
||||
|
||||
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user