1
0
mirror of https://github.com/gjkcz/ansible-void.git synced 2024-11-01 00:45:59 +01:00
ansible-void/files/session-cleanup.sh

11 lines
175 B
Bash
Raw Normal View History

2023-10-04 10:15:41 +02:00
#!/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