From e466c274cb09c53add3d5fde62c4860132df4cec Mon Sep 17 00:00:00 2001 From: Youssof Date: Wed, 30 Oct 2024 19:44:09 +0000 Subject: [PATCH] Install cockpit from backport if using R35 --- ensure-cockpit.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/ensure-cockpit.sh b/ensure-cockpit.sh index 471a80e..d1e866f 100755 --- a/ensure-cockpit.sh +++ b/ensure-cockpit.sh @@ -7,11 +7,16 @@ DRY_RUN=false LOCAL=/usr/local SUDO=$(test ${EUID} -ne 0 && which sudo) +L4T_VERSION=$(head -n 1 /etc/nv_tegra_release | grep -o 'R..') -$SUDO apt-get install -y cockpit + +if [ "$L4T_VERSION" == "R35" ]; then + $SUDO apt install -t focal-backports cockpit -y +else + $SUDO apt install cockpit -y +fi # Change the port to 443/80 and restart - $SUDO sed -i 's/9090/443/g' /lib/systemd/system/cockpit.socket $SUDO sed -i '/ListenStream=80/d' /lib/systemd/system/cockpit.socket $SUDO sed -i '/ListenStream=443/a ListenStream=80' /lib/systemd/system/cockpit.socket