Document how to remove meeting minutes from meetbot/mote

Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
Pierre-Yves Chibon 2020-09-02 14:14:35 +02:00
parent 5b962c5035
commit d4d518d9e4

View file

@ -0,0 +1,56 @@
# How to remove meeting minutes from meetbot?
Every now and then, we're asked to remove meeting minutes that meetbot recorded.
Meetbot records meeting on disk on value01.
The minutes can be found in:
::
/srv/web/meetbot
Most often people asking to have some minutes removed, will give you an URL to
that meeting.
You can use it to find the corresponding file, based on this (see above) root
directory.
For example the url:
::
https://meetbot.fedoraproject.org/teams/workstation/workstation.2020-08-19-18.13.log.html
points to the file:
::
/srv/web/meetbot/teams/workstation/workstation.2020-08-19-18.13.log.html
If you check this file, you will see that it is in fact a symlink to:
::
/srv/web/meetbot/fedora-meeting-2/2020-08-19/workstation.2020-08-19-18.13.log.html
(this will change for each meeting room and date of course).
So to remove this meeting we need to:
* Create a backup in case we've messed things up::
mkdir meeting_workstation_20200819
* Move all the minutes from this meeting to this directory::
mv /srv/web/meetbot/fedora-meeting-2/2020-08-19/workstation.2020-08-19-18.13.* meeting_workstation_20200819
* Remove the symlink::
rm /srv/web/meetbot/teams/workstation/workstation.2020-08-19-18.13.*
What about the UI?
Well, Mote seats on the top of the files meetbot generates, so cleaning up the
files on disk will eventually end up cleaning things in the UI.