Last active
March 22, 2022 19:43
-
-
Save jonathanbossenger/4950e107b0004a8ee82aae8b123cce58 to your computer and use it in GitHub Desktop.
Bash script to automatically decommission LAMP sites
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 | |
# Bash script to set drop local site created by sitesetup script | |
# See https://gist.github.com/jonathanbossenger/2dc5d5a00e20d63bd84844af89b1bbb4 | |
SSL_CERTS_DIRECTORY=/home/jonathan/ssl-certs | |
SITES_DIRECTORY=/home/jonathan/development/websites | |
SITE_NAME=$1 | |
MYSQL_DATABASE=$(echo $SITE_NAME | sed 's/[^a-zA-Z0-9]//g') | |
SITE_CONFIG_PATH=/etc/apache2/sites-available/$SITE_NAME.conf | |
SSL_SITE_CONFIG_PATH=/etc/apache2/sites-available/$SITE_NAME-ssl.conf | |
echo "Deleteing websites directory" | |
rm -rf $SITES_DIRECTORY/"$SITE_NAME" | |
echo "Disabling virtual hosts..." | |
a2dissite "$SITE_NAME".conf | |
a2dissite "$SITE_NAME"-ssl.conf | |
echo "Deleting virtual hosts..." | |
rm -rf "$SITE_CONFIG_PATH" | |
rm -rf "$SSL_SITE_CONFIG_PATH" | |
echo "Remove hosts record.." | |
sed -i "/$SITE_NAME.test/d" /etc/hosts | |
echo "Deleting database.." | |
mysql -uroot -ppassword --execute="DROP DATABASE $MYSQL_DATABASE;" | |
echo "Deleting certs.." | |
rm -rf $SSL_CERTS_DIRECTORY/"$SITE_NAME"* | |
echo "Restarting Apache..." | |
service apache2 restart | |
echo "Done" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Updated to use MYSQL_DATABASE variable, in case site name has a hyphen