From 39c168e94618e4674a6618177d969efd012eb241 Mon Sep 17 00:00:00 2001 From: cynfo3000 Date: Fri, 6 Mar 2026 09:45:07 +0100 Subject: [PATCH] docs: agent-linux README auf Git-Clone umgestellt (kein scp mehr) --- agent-linux/README.md | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/agent-linux/README.md b/agent-linux/README.md index 232a9d0..dd15e76 100644 --- a/agent-linux/README.md +++ b/agent-linux/README.md @@ -18,22 +18,17 @@ Linux/Proxmox Agent für das RMM-System. Sammelt Systemdaten und ermöglicht Rem ## Installation -1. **Binary kompilieren:** +1. **Repo auf dem Zielsystem klonen und Binary bauen:** ```bash + apt install -y git golang-go + git clone https://git.cynfo.net/christian/rmm2.git /opt/rmm + cd /opt/rmm make agent-linux VERSION=1.0.0 ``` -2. **Auf Zielsystem installieren:** +2. **Installationsskript ausführen:** ```bash - # Dateien kopieren - scp build/rmm-agent-linux root@target-host:/tmp/ - scp agent-linux/install.sh root@target-host:/tmp/ - scp agent-linux/rmm-agent-linux.service root@target-host:/tmp/ - scp agent-linux/config.yaml.example root@target-host:/tmp/ - - # Installation - ssh root@target-host - cd /tmp + cd /opt/rmm/agent-linux chmod +x install.sh ./install.sh ```