Skip to content

Commit

Permalink
Improve Debian package installation command
Browse files Browse the repository at this point in the history
By refining the package manager options, this change prevents the installation of unnecessary recommended and suggested packages, streamlining the process.
  • Loading branch information
matifali committed Oct 4, 2024
1 parent f4cdb15 commit 18570aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kasmvnc/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 18570aa

Please sign in to comment.