mirror of
https://github.com/gjkcz/ansible-void.git
synced 2024-11-01 00:45:59 +01:00
11 lines
175 B
Bash
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
|