Created
January 8, 2020 21:42
-
-
Save jult/3338f234e677c8b551f32257db2164a5 to your computer and use it in GitHub Desktop.
kick apache off my debian+nginx server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt purge apache2 apache2-bin apache2-data apache2-utils -y | |
apt clean all -y | |
apt update && apt upgrade && apt autoremove -y | |
apt-mark hold apache2 apache2-bin apache2-data apache2-utils | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment