#!/bin/bash #DESC Install TF's datto agent. #RH8 is technically unsupported for the most current version of the datto agent installer. Adding the needed packages prior so the install will work. dnf config-manager --add-repo https://download.mono-project.com/repo/centos8-stable.repo dnf install -y mono-devel #Install datto agent wget -O setup.sh https://zinfandel.rmm.datto.com/download-agent/linux/0c940513-6118-42ee-ac75-d2c713f16df9 && sh setup.sh exit $?