Skip to content

Instantly share code, notes, and snippets.

@denysbutenko
Created February 3, 2013 19:57
Show Gist options
  • Save denysbutenko/4703402 to your computer and use it in GitHub Desktop.
Save denysbutenko/4703402 to your computer and use it in GitHub Desktop.
removeplace
#!/bin/bash
ROOTPASS="password"
echo "Enter username to delete:"
read USERNAME
mysql -uroot --password=$ROOTPASS -e "DROP USER $USERNAME@localhost"
mysql -uroot --password=$ROOTPASS -e "DROP DATABASE $USERNAME"
rm -f /etc/nginx/sites-enabled/$USERNAME.conf
rm -f /etc/nginx/sites-available/$USERNAME.conf
rm -f /etc/php5/fpm/pool.d/$USERNAME.conf
find /var/log/nginx/ -type f -name "$USERNAME-*" -exec rm '{}' \;
service nginx reload
service php5-fpm reload
userdel -rf $USERNAME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment