|
@@ -16,16 +16,6 @@ source /usr/share/yunohost/helpers
|
|
|
#=================================================
|
|
#=================================================
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=5
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=5
|
|
|
|
|
|
|
|
-# remove flohmarkt database and database user
|
|
|
|
|
-ynh_script_progression --message="removing flohmarkt couchdb user and database" --weight=2
|
|
|
|
|
-# @@ wie komme ich hier an das admin-password, falls ich es brauche?
|
|
|
|
|
-# * brauche ich es? → ja
|
|
|
|
|
-# db:
|
|
|
|
|
-# curl -X DELETE 'http://127.0.0.1:5984/flohmarkt' --user '<admin-user>:<admin-password>'
|
|
|
|
|
-# user:
|
|
|
|
|
-# curl -X DELETE "http://127.0.0.1:5984/_users/org.couchdb.user%3Aflohmarkt?rev=`curl -sX GET 'http://127.0.0.1:5984/_users/org.couchdb.user%3Aflohmarkt' --user 'admin:bla42fasel' | jq -r ._rev`" --user '<admin-user>:<admin-password>'
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
# Stop flohmarkt service
|
|
# Stop flohmarkt service
|
|
|
ynh_script_progression --message="Stopping $app..." --weight=2
|
|
ynh_script_progression --message="Stopping $app..." --weight=2
|
|
|
yunohost service stop $app
|
|
yunohost service stop $app
|
|
@@ -37,6 +27,22 @@ then
|
|
|
yunohost service remove $app
|
|
yunohost service remove $app
|
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
|
|
+ynh_script_progression --message="Stopping couchdb..." --weight=2
|
|
|
|
|
+systemctl stop couchdb
|
|
|
|
|
+
|
|
|
|
|
+ynh_script_progression --message="Removing database..." --weight=2
|
|
|
|
|
+# remove flohmarkt database and database user
|
|
|
|
|
+# ynh_script_progression --message="removing flohmarkt couchdb user and database" --weight=2
|
|
|
|
|
+# @@ wie komme ich hier an das admin-password, falls ich es brauche?
|
|
|
|
|
+# * brauche ich es? → ja
|
|
|
|
|
+# db:
|
|
|
|
|
+# curl -X DELETE 'http://127.0.0.1:5984/flohmarkt' --user '<admin-user>:<admin-password>'
|
|
|
|
|
+# user:
|
|
|
|
|
+# curl -X DELETE "http://127.0.0.1:5984/_users/org.couchdb.user%3Aflohmarkt?rev=`curl -sX GET 'http://127.0.0.1:5984/_users/org.couchdb.user%3Aflohmarkt' --user 'admin:bla42fasel' | jq -r ._rev`" --user '<admin-user>:<admin-password>'
|
|
|
|
|
+# @@ todo improve this like above
|
|
|
|
|
+# https://codeberg.org/ChriChri/flohmarkt_ynh/issues/12
|
|
|
|
|
+rm -rf /var/lib/couchdb
|
|
|
|
|
+
|
|
|
# Remove the app-specific logrotate config
|
|
# Remove the app-specific logrotate config
|
|
|
ynh_remove_logrotate
|
|
ynh_remove_logrotate
|
|
|
|
|
|