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

Add session cleanup script

This commit is contained in:
Emil Miler 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

View File

@ -88,6 +88,12 @@
line: "DenyUsers student"
create: true
- name: Copy session cleanup script
copy:
src: 'files/session-cleanup.sh'
dest: '/etc/gdm/PostSession/Default'
mode: '0755'
- name: Software
hosts: all