mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
[fix] Reorder app removal steps
This commit is contained in:
parent
5578f497c4
commit
2123e49f22
1 changed files with 9 additions and 9 deletions
|
@ -8,6 +8,14 @@ source /usr/share/yunohost/helpers
|
||||||
# Retrieve app settings
|
# Retrieve app settings
|
||||||
domain=$(ynh_app_setting_get "$app" domain)
|
domain=$(ynh_app_setting_get "$app" domain)
|
||||||
|
|
||||||
|
# Remove nginx and php-fpm configuration files
|
||||||
|
sudo rm -f "/etc/nginx/conf.d/${domain}.d/movim.conf"
|
||||||
|
sudo rm -f "/etc/php5/fpm/pool.d/movim.conf"
|
||||||
|
|
||||||
|
# Reload services
|
||||||
|
sudo service nginx reload
|
||||||
|
sudo service php5-fpm restart
|
||||||
|
|
||||||
# Stop service and remove it
|
# Stop service and remove it
|
||||||
sudo service movim stop
|
sudo service movim stop
|
||||||
if [ -d /run/systemd/system ]; then
|
if [ -d /run/systemd/system ]; then
|
||||||
|
@ -26,14 +34,6 @@ ynh_mysql_drop_db "$db_name" || true
|
||||||
ynh_mysql_drop_user "$db_user" || true
|
ynh_mysql_drop_user "$db_user" || true
|
||||||
|
|
||||||
# Remove Movim files and user
|
# Remove Movim files and user
|
||||||
|
sudo rm -rf /var/www/movim
|
||||||
ynh_system_user_exists movim \
|
ynh_system_user_exists movim \
|
||||||
&& sudo userdel movim
|
&& sudo userdel movim
|
||||||
sudo rm -rf /var/www/movim
|
|
||||||
|
|
||||||
# Remove nginx and php-fpm configuration files
|
|
||||||
sudo rm -f /etc/nginx/conf.d/$domain.d/movim.conf
|
|
||||||
sudo rm -f /etc/php5/fpm/pool.d/movim.conf
|
|
||||||
|
|
||||||
# Reload services
|
|
||||||
sudo service nginx reload
|
|
||||||
sudo service php5-fpm restart
|
|
||||||
|
|
Loading…
Reference in a new issue