|
|
@@ -1,6 +1,7 @@
|
|
|
#!/bin/bash
|
|
|
|
|
|
-source ../common/versions.sh
|
|
|
+zoomVersion=6.4.10.2027
|
|
|
+rustDeskVersion=1.4.0
|
|
|
|
|
|
function info {
|
|
|
echo "---[ $1 ]--------------------"
|
|
|
@@ -17,6 +18,13 @@ checkUser klabautermann
|
|
|
|
|
|
info "Copy files"
|
|
|
cp -r ./* /
|
|
|
+mkdir -p /etc/apt/sources.list.d
|
|
|
+srcFile=/etc/apt/sources.list.d/debian.list
|
|
|
+echo "deb http://ftp.de.debian.org/debian/ stable main contrib non-free non-free-firmware" > $srcFile
|
|
|
+echo "deb http://security.debian.org/ stable-security main contrib non-free non-free-firmware" >> $srcFile
|
|
|
+echo "deb http://ftp.de.debian.org/debian/ testing main contrib non-free non-free-firmware" >> $srcFile
|
|
|
+echo "deb http://security.debian.org/ testing-security main contrib non-free non-free-firmware" >> $srcFile
|
|
|
+
|
|
|
|
|
|
info "Update system"
|
|
|
apt update
|