11 lines
131 B
Plaintext
11 lines
131 B
Plaintext
|
#
|
||
|
# This script removes leftovers dirs.
|
||
|
#
|
||
|
case "${ACTION}" in
|
||
|
post)
|
||
|
if [ -d var/lib/gdm ]; then
|
||
|
rm -rf var/lib/gdm
|
||
|
fi
|
||
|
;;
|
||
|
esac
|