Improve Debian package installation command

By refining the package manager options, this change prevents the installation of unnecessary recommended and suggested packages, streamlining the process.
pull/250/head
Muhammad Atif Ali 9 months ago
parent f4cdb152fe
commit 18570aa629

@ -16,7 +16,7 @@ check_installed() {
install_deb() {
local url=$1
wget $url -O /tmp/kasmvncserver.deb
sudo apt-get install /tmp/kasmvncserver_*.deb -y
sudo apt-get install --yes --no-install-recommends --no-install-suggests /tmp/kasmvncserver.deb
sudo adduser $USER ssl-cert
rm /tmp/kasmvncserver.deb
}

Loading…
Cancel
Save