Update Mon Nov 2 06:11:13 PM CST 2020
This commit is contained in:
parent
21973f39ca
commit
e567277fbb
|
@ -13,8 +13,13 @@
|
|||
- cd pimpmykali
|
||||
- sudo ./pimpmykali.sh
|
||||
|
||||
# Revision 1.0.2 - Apt Upgrade Commented Out
|
||||
- Due to Metasploit being upgraded from msf5 -> MSF6
|
||||
apt upgrade has been commented out and will not be run
|
||||
at this time.
|
||||
|
||||
# Revision 1.0.1 Python-Requests
|
||||
- added python requests and colorama installations to fix_missing (menu option 1) and (menu option 0) fix_all
|
||||
- added python requests and colorama installations to fix_missing (menu option 1) and (menu option 0) fix_all
|
||||
|
||||
# Revision 1.0.0 Atom replaces Gedit
|
||||
- pimpmykali has reached a state of consistency and stability in the function it preforms
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
# Standard Disclaimer: Author assumes no liability for any damage
|
||||
|
||||
# revision var
|
||||
revision="1.0.1"
|
||||
revision="1.0.2"
|
||||
|
||||
# unicorn puke:
|
||||
red=$'\e[1;31m'
|
||||
|
@ -289,7 +289,8 @@ fix_sources () {
|
|||
run_update () {
|
||||
fix_sources
|
||||
echo -e "\n $greenplus starting pimpmyupgrade \n"
|
||||
eval apt -y update $silent && apt -y upgrade $silent
|
||||
eval apt -y update $silent
|
||||
# COMMENTED OUT DUE TO MSF6 RELEASED && apt -y upgrade $silent
|
||||
kernel_check=$(ls /lib/modules | sort -n | tail -n 1)
|
||||
echo -e "\n $greenplus installing dkms build-essential linux-headers-$kernel_check \n"
|
||||
eval apt -y install dkms build-essential linux-headers-amd64 $silent
|
||||
|
|
Loading…
Reference in New Issue