diff options
Diffstat (limited to 'debian/libreoffice-core.postrm.in')
-rwxr-xr-x | debian/libreoffice-core.postrm.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/libreoffice-core.postrm.in b/debian/libreoffice-core.postrm.in new file mode 100755 index 000000000..95ed9cb4f --- /dev/null +++ b/debian/libreoffice-core.postrm.in @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +#INCLUDE_SHELL_LIB# + +if [ "$1" = "remove" ]; then + rm -rf /var/spool/libreoffice +fi + +#DEBHELPER# + +exit 0 |