Skip to content

Commit

Permalink
Add quiet flag to apt-get.
Browse files Browse the repository at this point in the history
  • Loading branch information
averagesecurityguy committed Feb 26, 2016
1 parent 5f98736 commit 1b6d4d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kali_light_rolling_vbox.sh
Expand Up @@ -14,22 +14,22 @@
#-----------------------------------------------------------------------------
echo "Updating packages"
apt-get update
apt-get -y upgrade
apt-get -q -y upgrade

echo "Installing Kali top 10 tools."
pass=$(head -c 24 /dev/urandom | base64)
echo "mysql-server-5.6 mysql-server/root_password_again password $pass" | debconf-set-selections
echo "mysql-server-5.6 mysql-server/root_password password $pass" | debconf-set-selections
echo "wireshark-common wireshark-common/install-setuid boolean false" | debconf-set-selections
apt-get -y install kali-linux-top10 seclists
apt-get -q -y install kali-linux-top10 seclists

echo "Configuring Metasploit Database"
/etc/init.d/postgresql start
update-rc.d postgresql enable
msfdb init

echo "Installing VirtualBox Guest Additions"
apt-get -y install linux-image-amd64 virtualbox-guest-x11
apt-get -q -y install linux-image-amd64 virtualbox-guest-x11

echo "MySQL Root Password: $pass"
echo "Please reboot."

0 comments on commit 1b6d4d6

Please sign in to comment.