1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gitlab_ynh.git synced 2024-09-03 18:36:35 +02:00
gitlab_ynh/scripts/remove

28 lines
535 B
Text
Raw Normal View History

2017-06-10 10:10:31 +02:00
#!/bin/bash
2017-06-10 14:43:29 +02:00
set -u
2017-06-10 10:10:31 +02:00
# See comments in install script
app=$YNH_APP_INSTANCE_NAME
# Source YunoHost helpers
source /usr/share/yunohost/helpers
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
2017-06-30 22:13:40 +02:00
sudo apt-get -yy remove gitlab-ce
2017-06-29 21:39:47 +02:00
2017-06-30 09:15:17 +02:00
sudo rm -rf /opt/gitlab
sudo rm -rf /etc/gitlab
sudo rm -rf /var/opt/gitlab
2017-06-29 21:39:47 +02:00
# Remove apt sources-list
sudo rm -f /etc/apt/sources.list.d/gitlab-ce.list
2017-06-10 10:10:31 +02:00
# Remove nginx configuration file
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
# Reload nginx service
sudo service nginx reload