Add session cleanup script

This commit is contained in:
em
2023-10-04 10:15:41 +02:00
parent 14df18f1d4
commit 19af9b8d2c
2 changed files with 16 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/sh
# Session cleanup for user student on logout
if [ "${USERNAME}" = "student" ]; then
rm -rf /home/student/.cache/mozilla
rm -rf /home/student/.mozilla
fi
exit 0