Acutis Go — Linux endpoint agent (observe-only)
================================================

This bundle contains the Acutis Go agent binaries and the install/uninstall
scripts for Linux.

Contents
--------
  acutis-go-linux-amd64    Agent binary for x86_64 machines
  acutis-go-linux-arm64    Agent binary for aarch64 / arm64 machines
  install.sh               Installer (downloads + installs the agent as a service)
  uninstall.sh             Uninstaller (de-enrolls, stops, and removes the agent)
  README.txt               This file

Install (one line)
-------------------
  curl -fsSL https://get.acutisgo.com/install.sh | sudo bash

To enroll the machine with your fleet at install time, pass an enrollment code:
  curl -fsSL https://get.acutisgo.com/install.sh | sudo ACUTIS_ENROLL=gojoin-XXXX bash

Install (manual, from this bundle)
----------------------------------
  sudo ./install.sh

The correct architecture (amd64 or arm64) is auto-detected from `uname -m`,
so you do not need to pick a binary yourself. The backend defaults to
https://app.acutisgo.com; override it with the ACUTIS_BACKEND environment
variable if needed:
  sudo ACUTIS_BACKEND=https://app.acutisgo.com ./install.sh

After install
-------------
  systemctl status acutis-go      Check the service is running
  journalctl -u acutis-go -f      Follow the agent logs

Uninstall
---------
  sudo ./uninstall.sh
  (or)  curl -fsSL https://get.acutisgo.com/uninstall.sh | sudo bash

The uninstaller makes a best-effort call to de-enroll this machine from the
fleet, then stops and removes the service and binary.
