Install cockpit from backport if using R35

This commit is contained in:
Youssof 2024-10-30 19:44:09 +00:00
parent 9219d5c554
commit e466c274cb
1 changed files with 7 additions and 2 deletions

View File

@ -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