1
0
mirror of https://github.com/gjkcz/ansible-void.git synced 2025-11-30 22:00:27 +01:00
Files
ansible-void/files/session-cleanup.sh
2023-10-04 10:15:41 +02:00

11 lines
175 B
Bash

#!/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