1
0
mirror of https://github.com/gjkcz/ansible-void.git synced 2025-06-18 18:40:34 +02:00

Add session cleanup script

This commit is contained in:
2023-10-04 10:15:41 +02:00
parent 14df18f1d4
commit 19af9b8d2c
2 changed files with 16 additions and 0 deletions

10
files/session-cleanup.sh Normal file
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