docs: fix RPM install to use public URL with manual repo file
Some checks failed
CI / lint (push) Waiting to run
CI / build (push) Blocked by required conditions
CI / package (push) Blocked by required conditions
CI / typecheck (push) Failing after 23s
CI / test (push) Failing after 23s

Gitea's auto-generated .repo file contains internal IPs. Use a manual
repo file with the public mysources.co.uk baseurl instead.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Michal
2026-03-08 17:36:26 +00:00
parent 0ffbcfad79
commit c0f63e20e9

View File

@@ -30,7 +30,13 @@ Claude Code <--STDIO--> mcplocal (local proxy) <--HTTP--> mcpd (daemon) <--
```bash ```bash
# From RPM repository (Fedora/RHEL) # From RPM repository (Fedora/RHEL)
sudo dnf config-manager --add-repo https://mysources.co.uk/api/packages/michal/rpm.repo sudo tee /etc/yum.repos.d/mcpctl.repo <<'EOF'
[mcpctl]
name=mcpctl
baseurl=https://mysources.co.uk/api/packages/michal/rpm
enabled=1
gpgcheck=0
EOF
sudo dnf install mcpctl sudo dnf install mcpctl
# Or build from source # Or build from source