From d204e911f236bcc4640ad0455523534c4c7c53f9 Mon Sep 17 00:00:00 2001 From: lapineige Date: Thu, 12 Jan 2023 01:24:02 +0100 Subject: [PATCH] Fix pleroma/akkoma Yes, the binary pleroma_ctl is supposed to be pleroma, not akkoma. At least for now. --- doc/DISCLAIMER.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/DISCLAIMER.md b/doc/DISCLAIMER.md index e077f27..67e807f 100644 --- a/doc/DISCLAIMER.md +++ b/doc/DISCLAIMER.md @@ -10,19 +10,19 @@ See [#4](https://github.com/YunoHost-Apps/akkoma_ynh/issues/4) for more explaina - LDAP supported but HTTP auth not. ## Admin Tasks -Go to **cd /var/www/pleroma/live**. +Go to **cd /var/www/akkoma/live**. ### Adding users **Run:** - $ ( cd /var/www/pleroma/live && sudo -u pleroma MIX_ENV=prod ./bin/pleroma_ctl user new ) + $ ( cd /var/www/akkoma/live && sudo -u akkoma MIX_ENV=prod ./bin/pleroma_ctl user new ) ### Password reset **Run:** - $ ( cd /var/www/pleroma/live && sudo -u pleroma MIX_ENV=prod ./bin/pleroma_ctl user reset_password ) + $ ( cd /var/www/akkoma/live && sudo -u akkoma MIX_ENV=prod ./bin/pleroma_ctl user reset_password ) This will generate a **password reset link** that you can then send to the user. @@ -32,6 +32,6 @@ You can make users **moderators**. They will then be able to **delete any post** **Run:** - $ ( cd /var/www/pleroma/live && sudo -u pleroma MIX_ENV=prod ./bin/pleroma_ctl user set --[no-]admin ) + $ ( cd /var/www/akkoma/live && sudo -u akkoma MIX_ENV=prod ./bin/pleroma_ctl user set --[no-]admin ) **--admin** option will **make the user moderator** and **--no-admin** will **take away the moderator privileges** from the user.