mirror of
https://github.com/netvolt/LinuxRMM-Script.git
synced 2025-08-14 19:58:20 +02:00
Auto-detect system architecture using uname -m instead of manual input.
for issue https://github.com/netvolt/LinuxRMM-Script/issues/30
This commit is contained in:
@ -10,17 +10,15 @@ if [[ $1 == "help" ]]; then
|
|||||||
echo ""
|
echo ""
|
||||||
echo "List of INSTALL argument (no argument name):"
|
echo "List of INSTALL argument (no argument name):"
|
||||||
echo "Arg 1: 'install'"
|
echo "Arg 1: 'install'"
|
||||||
echo "Arg 2: System type 'amd64' 'x86' 'arm64' 'armv6'"
|
echo "Arg 2: Mesh agent URL"
|
||||||
echo "Arg 3: Mesh agent URL"
|
echo "Arg 3: API URL"
|
||||||
echo "Arg 4: API URL"
|
echo "Arg 4: Client ID"
|
||||||
echo "Arg 5: Client ID"
|
echo "Arg 5: Site ID"
|
||||||
echo "Arg 6: Site ID"
|
echo "Arg 6: Auth Key"
|
||||||
echo "Arg 7: Auth Key"
|
echo "Arg 7: Agent Type 'server' or 'workstation'"
|
||||||
echo "Arg 8: Agent Type 'server' or 'workstation'"
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "List of UPDATE argument (no argument name)"
|
echo "List of UPDATE argument (no argument name)"
|
||||||
echo "Arg 1: 'update'"
|
echo "Arg 1: 'update'"
|
||||||
echo "Arg 2: System type 'amd64' 'x86' 'arm64' 'armv6'"
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "List of UNINSTALL argument (no argument name):"
|
echo "List of UNINSTALL argument (no argument name):"
|
||||||
echo "Arg 1: 'uninstall'"
|
echo "Arg 1: 'uninstall'"
|
||||||
@ -36,93 +34,38 @@ if [[ $1 != "install" && $1 != "update" && $1 != "uninstall" ]]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $1 == "install" && $2 == "" ]]; then
|
## Automatically detect system architecture
|
||||||
echo "Argument 2 (System type) is empty !"
|
system=$(uname -m)
|
||||||
echo "Type help for more information"
|
case $system in
|
||||||
|
x86_64)
|
||||||
|
system="amd64"
|
||||||
|
;;
|
||||||
|
i386|i686)
|
||||||
|
system="x86"
|
||||||
|
;;
|
||||||
|
aarch64)
|
||||||
|
system="arm64"
|
||||||
|
;;
|
||||||
|
armv6l)
|
||||||
|
system="armv6"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Unsupported architecture: $system"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
## Setting variables
|
||||||
if [[ $1 == "update" && $2 == "" ]]; then
|
mesh_url=$2
|
||||||
echo "Argument 2 (System type) is empty !"
|
rmm_url=$3
|
||||||
echo "Type help for more information"
|
rmm_client_id=$4
|
||||||
exit 1
|
rmm_site_id=$5
|
||||||
fi
|
rmm_auth=$6
|
||||||
|
rmm_agent_type=$7
|
||||||
if [[ $1 == "install" && $2 != "amd64" && $2 != "x86" && $2 != "arm64" && $2 != "armv6" ]]; then
|
|
||||||
echo "This argument can only be 'amd64' 'x86' 'arm64' 'armv6' !"
|
|
||||||
echo "Type help for more information"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $1 == "install" && $3 == "" ]]; then
|
|
||||||
echo "Argument 3 (Mesh agent URL) is empty !"
|
|
||||||
echo "Type help for more information"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $1 == "install" && $4 == "" ]]; then
|
|
||||||
echo "Argument 4 (API URL) is empty !"
|
|
||||||
echo "Type help for more information"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $1 == "install" && $5 == "" ]]; then
|
|
||||||
echo "Argument 5 (Client ID) is empty !"
|
|
||||||
echo "Type help for more information"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $1 == "install" && $6 == "" ]]; then
|
|
||||||
echo "Argument 6 (Site ID) is empty !"
|
|
||||||
echo "Type help for more information"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $1 == "install" && $7 == "" ]]; then
|
|
||||||
echo "Argument 7 (Auth Key) is empty !"
|
|
||||||
echo "Type help for more information"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $1 == "install" && $8 == "" ]]; then
|
|
||||||
echo "Argument 8 (Agent Type) is empty !"
|
|
||||||
echo "Type help for more information"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $1 == "install" && $8 != "server" && $8 != "workstation" ]]; then
|
|
||||||
echo "First argument can only be 'server' or 'workstation' !"
|
|
||||||
echo "Type help for more information"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $1 == "uninstall" && $2 == "" ]]; then
|
|
||||||
echo "Argument 2 (Mesh agent FQDN) is empty !"
|
|
||||||
echo "Type help for more information"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $1 == "uninstall" && $3 == "" ]]; then
|
|
||||||
echo "Argument 3 (Mesh agent id) is empty !"
|
|
||||||
echo "Type help for more information"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
## Setting var for easy scription
|
|
||||||
system=$2
|
|
||||||
mesh_url=$3
|
|
||||||
rmm_url=$4
|
|
||||||
rmm_client_id=$5
|
|
||||||
rmm_site_id=$6
|
|
||||||
rmm_auth=$7
|
|
||||||
rmm_agent_type=$8
|
|
||||||
## Uninstall var for easy scription
|
|
||||||
mesh_fqdn=$2
|
mesh_fqdn=$2
|
||||||
mesh_id=$3
|
mesh_id=$3
|
||||||
## Setting Go verison to be installed
|
|
||||||
go_version="1.21.6"
|
|
||||||
|
|
||||||
|
go_version="1.21.6"
|
||||||
go_url_amd64="https://go.dev/dl/go$go_version.linux-amd64.tar.gz"
|
go_url_amd64="https://go.dev/dl/go$go_version.linux-amd64.tar.gz"
|
||||||
go_url_x86="https://go.dev/dl/go$go_version.linux-386.tar.gz"
|
go_url_x86="https://go.dev/dl/go$go_version.linux-386.tar.gz"
|
||||||
go_url_arm64="https://go.dev/dl/go$go_version.linux-arm64.tar.gz"
|
go_url_arm64="https://go.dev/dl/go$go_version.linux-arm64.tar.gz"
|
||||||
@ -130,104 +73,41 @@ go_url_armv6="https://go.dev/dl/go$go_version.linux-armv6l.tar.gz"
|
|||||||
|
|
||||||
function go_install() {
|
function go_install() {
|
||||||
if ! command -v go &> /dev/null; then
|
if ! command -v go &> /dev/null; then
|
||||||
## Installing golang
|
|
||||||
case $system in
|
case $system in
|
||||||
amd64)
|
amd64) wget -O /tmp/golang.tar.gz $go_url_amd64 ;;
|
||||||
wget -O /tmp/golang.tar.gz $go_url_amd64
|
x86) wget -O /tmp/golang.tar.gz $go_url_x86 ;;
|
||||||
;;
|
arm64) wget -O /tmp/golang.tar.gz $go_url_arm64 ;;
|
||||||
x86)
|
armv6) wget -O /tmp/golang.tar.gz $go_url_armv6 ;;
|
||||||
wget -O /tmp/golang.tar.gz $go_url_x86
|
|
||||||
;;
|
|
||||||
arm64)
|
|
||||||
wget -O /tmp/golang.tar.gz $go_url_arm64
|
|
||||||
;;
|
|
||||||
armv6)
|
|
||||||
wget -O /tmp/golang.tar.gz $go_url_armv6
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
rm -rvf /usr/local/go/
|
rm -rvf /usr/local/go/
|
||||||
tar -xvzf /tmp/golang.tar.gz -C /usr/local/
|
tar -xvzf /tmp/golang.tar.gz -C /usr/local/
|
||||||
rm /tmp/golang.tar.gz
|
rm /tmp/golang.tar.gz
|
||||||
export GOPATH=/usr/local/go
|
export GOPATH=/usr/local/go
|
||||||
export GOCACHE=/root/.cache/go-build
|
export GOCACHE=/root/.cache/go-build
|
||||||
|
echo "Go is installed."
|
||||||
echo "Go is installed (version $go_current_version)."
|
|
||||||
else
|
|
||||||
# Get the current version of Go installed
|
|
||||||
go_current_version=$(go version | awk '{print $3}' | sed 's/go//')
|
|
||||||
|
|
||||||
if [ "$go_current_version" != "$go_version" ]; then
|
|
||||||
echo "Version mismatch. Current installed version is $go_current_version. Desired version is $go_version."
|
|
||||||
echo "Installing Go $go_version..."
|
|
||||||
## Installing golang
|
|
||||||
case $system in
|
|
||||||
amd64)
|
|
||||||
wget -O /tmp/golang.tar.gz $go_url_amd64
|
|
||||||
;;
|
|
||||||
x86)
|
|
||||||
wget -O /tmp/golang.tar.gz $go_url_x86
|
|
||||||
;;
|
|
||||||
arm64)
|
|
||||||
wget -O /tmp/golang.tar.gz $go_url_arm64
|
|
||||||
;;
|
|
||||||
armv6)
|
|
||||||
wget -O /tmp/golang.tar.gz $go_url_armv6
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
rm -rvf /usr/local/go/
|
|
||||||
tar -xvzf /tmp/golang.tar.gz -C /usr/local/
|
|
||||||
rm /tmp/golang.tar.gz
|
|
||||||
export GOPATH=/usr/local/go
|
|
||||||
export GOCACHE=/root/.cache/go-build
|
|
||||||
|
|
||||||
echo "Go $go_version installed."
|
|
||||||
else
|
|
||||||
echo "Go is up to date (version $go_current_version)."
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function agent_compile() {
|
function agent_compile() {
|
||||||
## Compiling and installing tactical agent from github
|
|
||||||
echo "Agent Compile begin"
|
echo "Agent Compile begin"
|
||||||
wget -O /tmp/rmmagent.tar.gz "https://github.com/amidaware/rmmagent/archive/refs/heads/master.tar.gz"
|
wget -O /tmp/rmmagent.tar.gz "https://github.com/amidaware/rmmagent/archive/refs/heads/master.tar.gz"
|
||||||
tar -xf /tmp/rmmagent.tar.gz -C /tmp/
|
tar -xf /tmp/rmmagent.tar.gz -C /tmp/
|
||||||
rm /tmp/rmmagent.tar.gz
|
rm /tmp/rmmagent.tar.gz
|
||||||
cd /tmp/rmmagent-master
|
cd /tmp/rmmagent-master
|
||||||
case $system in
|
case $system in
|
||||||
amd64)
|
amd64) env CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-s -w" -o /tmp/temp_rmmagent ;;
|
||||||
env CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-s -w" -o /tmp/temp_rmmagent
|
x86) env CGO_ENABLED=0 GOOS=linux GOARCH=386 go build -ldflags "-s -w" -o /tmp/temp_rmmagent ;;
|
||||||
;;
|
arm64) env CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -ldflags "-s -w" -o /tmp/temp_rmmagent ;;
|
||||||
x86)
|
armv6) env CGO_ENABLED=0 GOOS=linux GOARCH=arm go build -ldflags "-s -w" -o /tmp/temp_rmmagent ;;
|
||||||
env CGO_ENABLED=0 GOOS=linux GOARCH=386 go build -ldflags "-s -w" -o /tmp/temp_rmmagent
|
|
||||||
;;
|
|
||||||
arm64)
|
|
||||||
env CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -ldflags "-s -w" -o /tmp/temp_rmmagent
|
|
||||||
;;
|
|
||||||
armv6)
|
|
||||||
env CGO_ENABLED=0 GOOS=linux GOARCH=arm go build -ldflags "-s -w" -o /tmp/temp_rmmagent
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
cd /tmp
|
cd /tmp
|
||||||
rm -R /tmp/rmmagent-master
|
rm -R /tmp/rmmagent-master
|
||||||
}
|
}
|
||||||
|
|
||||||
function update_agent() {
|
|
||||||
systemctl stop tacticalagent
|
|
||||||
|
|
||||||
cp /tmp/temp_rmmagent /usr/local/bin/rmmagent
|
|
||||||
rm /tmp/temp_rmmagent
|
|
||||||
|
|
||||||
systemctl start tacticalagent
|
|
||||||
}
|
|
||||||
function install_agent() {
|
function install_agent() {
|
||||||
cp /tmp/temp_rmmagent /usr/local/bin/rmmagent
|
cp /tmp/temp_rmmagent /usr/local/bin/rmmagent
|
||||||
/tmp/temp_rmmagent -m install -api $rmm_url -client-id $rmm_client_id -site-id $rmm_site_id -agent-type $rmm_agent_type -auth $rmm_auth
|
/tmp/temp_rmmagent -m install -api $rmm_url -client-id $rmm_client_id -site-id $rmm_site_id -agent-type $rmm_agent_type -auth $rmm_auth
|
||||||
rm /tmp/temp_rmmagent
|
rm /tmp/temp_rmmagent
|
||||||
|
|
||||||
cat << "EOF" > /etc/systemd/system/tacticalagent.service
|
cat << "EOF" > /etc/systemd/system/tacticalagent.service
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Tactical RMM Linux Agent
|
Description=Tactical RMM Linux Agent
|
||||||
@ -243,38 +123,18 @@ KillMode=process
|
|||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
EOF
|
EOF
|
||||||
|
systemctl daemon-reload
|
||||||
systemctl daemon-reload
|
systemctl enable --now tacticalagent
|
||||||
systemctl enable --now tacticalagent
|
systemctl start tacticalagent
|
||||||
systemctl start tacticalagent
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_mesh() {
|
function install_mesh() {
|
||||||
## Installing mesh agent
|
wget -O /tmp/meshagent $mesh_url
|
||||||
wget -O /tmp/meshagent $mesh_url
|
chmod +x /tmp/meshagent
|
||||||
chmod +x /tmp/meshagent
|
mkdir /opt/tacticalmesh
|
||||||
mkdir /opt/tacticalmesh
|
/tmp/meshagent -install --installPath="/opt/tacticalmesh"
|
||||||
/tmp/meshagent -install --installPath="/opt/tacticalmesh"
|
rm /tmp/meshagent
|
||||||
rm /tmp/meshagent
|
rm /tmp/meshagent.msh
|
||||||
rm /tmp/meshagent.msh
|
|
||||||
}
|
|
||||||
|
|
||||||
function check_profile () {
|
|
||||||
source /etc/environment
|
|
||||||
profile_file="/root/.profile"
|
|
||||||
path_count=$(cat $profile_file | grep -o "export PATH=/usr/local/go/bin" | wc -l)
|
|
||||||
if [[ $path_count -ne 0 ]]; then
|
|
||||||
echo "Removing incorrect \$PATH variable\(s\)"
|
|
||||||
sed -i "/export\ PATH\=\/usr\/local\/go\/bin/d" $profile_file
|
|
||||||
fi
|
|
||||||
|
|
||||||
path_count=$(cat $profile_file | grep -o "export PATH=\$PATH:/usr/local/go/bin" | wc -l)
|
|
||||||
if [[ $path_count -ne 1 ]]; then
|
|
||||||
echo "Fixing \$PATH Variable"
|
|
||||||
sed -i "/export\ PATH\=\$PATH\:\/usr\/local\/go\/bin/d" $profile_file
|
|
||||||
echo "export PATH=\$PATH:/usr/local/go/bin" >> $profile_file
|
|
||||||
fi
|
|
||||||
source $profile_file
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function uninstall_agent() {
|
function uninstall_agent() {
|
||||||
@ -283,22 +143,18 @@ function uninstall_agent() {
|
|||||||
rm /etc/systemd/system/tacticalagent.service
|
rm /etc/systemd/system/tacticalagent.service
|
||||||
systemctl daemon-reload
|
systemctl daemon-reload
|
||||||
rm /usr/local/bin/rmmagent
|
rm /usr/local/bin/rmmagent
|
||||||
rm /etc/tacticalagent
|
rm -rf /etc/tacticalagent
|
||||||
sed -i "/export\ PATH\=\$PATH\:\/usr\/local\/go\/bin/d" /root/.profile
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function uninstall_mesh() {
|
function uninstall_mesh() {
|
||||||
(wget "https://$mesh_fqdn/meshagents?script=1" -O /tmp/meshinstall.sh || wget "https://$mesh_fqdn/meshagents?script=1" --no-proxy -O /tmp/meshinstall.sh)
|
wget "https://$mesh_fqdn/meshagents?script=1" -O /tmp/meshinstall.sh || wget "https://$mesh_fqdn/meshagents?script=1" --no-proxy -O /tmp/meshinstall.sh
|
||||||
chmod 755 /tmp/meshinstall.sh
|
chmod 755 /tmp/meshinstall.sh
|
||||||
(/tmp/meshinstall.sh uninstall https://$mesh_fqdn $mesh_id || /tmp/meshinstall.sh uninstall uninstall uninstall https://$mesh_fqdn $mesh_id)
|
/tmp/meshinstall.sh uninstall https://$mesh_fqdn $mesh_id || /tmp/meshinstall.sh uninstall uninstall uninstall https://$mesh_fqdn $mesh_id
|
||||||
rm /tmp/meshinstall.sh
|
rm /tmp/meshinstall.sh
|
||||||
rm meshagent
|
|
||||||
rm meshagent.msh
|
|
||||||
}
|
}
|
||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
install)
|
install)
|
||||||
check_profile
|
|
||||||
go_install
|
go_install
|
||||||
install_mesh
|
install_mesh
|
||||||
agent_compile
|
agent_compile
|
||||||
@ -306,17 +162,14 @@ install)
|
|||||||
echo "Tactical Agent Install is done"
|
echo "Tactical Agent Install is done"
|
||||||
exit 0;;
|
exit 0;;
|
||||||
update)
|
update)
|
||||||
check_profile
|
|
||||||
go_install
|
go_install
|
||||||
agent_compile
|
agent_compile
|
||||||
update_agent
|
install_agent
|
||||||
echo "Tactical Agent Update is done"
|
echo "Tactical Agent Update is done"
|
||||||
exit 0;;
|
exit 0;;
|
||||||
uninstall)
|
uninstall)
|
||||||
check_profile
|
|
||||||
uninstall_agent
|
uninstall_agent
|
||||||
uninstall_mesh
|
uninstall_mesh
|
||||||
echo "Tactical Agent Uninstall is done"
|
echo "Tactical Agent Uninstall is done"
|
||||||
echo "You may need to manually remove the agents orphaned connections on TacticalRMM and MeshCentral"
|
|
||||||
exit 0;;
|
exit 0;;
|
||||||
esac
|
esac
|
||||||
|
Reference in New Issue
Block a user