Created
October 24, 2024 17:58
-
-
Save joefreewave/ed88dc587eb583c0412bcee87405bcf5 to your computer and use it in GitHub Desktop.
delete/uninstall gitlab runner from ubuntu 22.04
This file contains hidden or 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
# delete/uninstall gitlab runner from ubuntu 22.04 | |
# Stop and remove the service | |
sudo gitlab-runner stop | |
sudo gitlab-runner uninstall | |
sudo systemctl daemon-reload | |
# Remove gitlab-runner files and config | |
sudo rm -rf /usr/local/bin/gitlab-runner | |
sudo userdel gitlab-runner | |
sudo rm -rf /home/gitlab-runner/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this information!