added unattended installs, and bumped golang ver
This commit is contained in:
16
scripts/unattended/gitearemove.sh
Normal file
16
scripts/unattended/gitearemove.sh
Normal file
@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env bash
|
||||
trap 'exit 130' INT
|
||||
sudo systemctl stop gitea
|
||||
sudo systemctl disable gitea
|
||||
sudo rm -rf /etc/systemd/system/gitea.service
|
||||
echo "Backing up Files"
|
||||
tar -cvzf gitea.tar.gz /var/lib/gitea/ /etc/gitea
|
||||
sudo rm -rf /home/git
|
||||
sudo userdel git
|
||||
sudo rm -rf /usr/local/bin/gitea
|
||||
sudo rm -rf /var/lib/gitea/*
|
||||
sudo rm -rf /etc/gitea
|
||||
sudo ufw delete allow 3000
|
||||
|
||||
echo "Gitea has been uninstalled, and all files have are backed up in gitea.tar.gz, you can delete it at your discretion."
|
||||
|
Reference in New Issue
Block a user