2018-07-26 21:16:16 +00:00
|
|
|
# Gitea Uninstall Script
|
|
|
|
# This script removes Gitea as installed by this script. THIS DELTES ALL DATA if you are using SQLite.
|
|
|
|
|
|
|
|
echo "Removing Gitea and DELETING ALL DATA."
|
|
|
|
|
2018-07-26 21:20:54 +00:00
|
|
|
echo "Stopping and removing the Gitea service."
|
2018-07-26 21:16:16 +00:00
|
|
|
sudo systemctl stop gitea # Stop the Gitea service
|
|
|
|
sudo systemctl disable gitea # Disable the Gitea service automatically starting on boot.
|
|
|
|
sudo rm /etc/systemd/system/gitea.service # Delete the Gitea service.
|
2018-07-26 21:20:54 +00:00
|
|
|
|
|
|
|
echo "Deleting Gitea configuration and Data."
|
|
|
|
|
2018-07-26 21:16:16 +00:00
|
|
|
sudo rm /usr/local/bin/gitea # Remove Gitea from Path
|
|
|
|
sudo rm -rf /opt/gitea # Remove Gitea Data
|
|
|
|
|
2018-07-26 21:20:54 +00:00
|
|
|
if test ! -d /opt/gitea
|
|
|
|
echo "Gitea has been completely removed."
|
|
|
|
else
|
|
|
|
echo "Gitea has not been completely removed. File an issue here: https://git.coolaj86.com/coolaj86/gitea-installer.sh/issues/new"
|
2018-08-18 00:14:10 +00:00
|
|
|
fi
|