Skip to content

Commit

Permalink
Update execute-xubuntu-vagrant-vbox-from-box.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanoSalsano authored Jan 1, 2024
1 parent 3f4ba39 commit 6bfd8c1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions packer/execute-xubuntu-vagrant-vbox-from-box.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ mkdir -p "$ROSE_SYS_DIR"
# Update apt
export DEBIAN_FRONTEND=noninteractive
sudo apt-get update
sudo apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade -y
sudo DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade -y

sudo apt-get autoremove -y

Expand Down Expand Up @@ -58,17 +58,18 @@ rm google-chrome-stable_current_amd64.deb
# Install sublime evaluation version
echo -e "\n\n#####################################"
echo -e "\n-Installing sublime evaluation version"
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
#wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/sublimehq-archive.gpg > /dev/null
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
sudo apt-get update
sudo apt-get install -y sublime-text
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y sublime-text

echo "wireshark-common wireshark-common/install-setuid boolean true" | sudo debconf-set-selections

# Install wireshark
echo -e "\n\n#####################################"
echo -e "\n-Installing wireshark"
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y wireshark
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y wireshark

echo -e "\n\n#####################################"
echo -e "\n- Terminal config"
Expand Down

0 comments on commit 6bfd8c1

Please sign in to comment.