13 lines
124 B
Bash
Executable file
13 lines
124 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
#INCLUDE_SHELL_LIB#
|
|
|
|
if [ "$1" = "remove" ]; then
|
|
rm -rf /var/spool/libreoffice
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|