mirror of
https://github.com/YunoHost-Apps/ghost_ynh.git
synced 2024-09-03 19:16:02 +02:00
14 lines
No EOL
358 B
Bash
14 lines
No EOL
358 B
Bash
#!/bin/bash
|
|
|
|
domain=$(sudo yunohost app setting ghostblog domain)
|
|
|
|
sudo userdel --remove ghostblog
|
|
|
|
sudo service ynh-app-ghostblog stop
|
|
sudo update-rc.d ynh-app-ghostblog remove
|
|
sudo rm /etc/init.d/ynh-app-ghostblog
|
|
sudo yunohost app service -R ynh-app-ghostblog
|
|
|
|
sudo rm -f /etc/nginx/conf.d/$domain.d/ghostblog.conf
|
|
|
|
sudo rm -rf /var/run/yunohost/ghostblog |