diff options
Diffstat (limited to 'distro/ubuntu/prerm')
-rwxr-xr-x | distro/ubuntu/prerm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/distro/ubuntu/prerm b/distro/ubuntu/prerm new file mode 100755 index 00000000..0ae99ca5 --- /dev/null +++ b/distro/ubuntu/prerm @@ -0,0 +1,11 @@ +#!/bin/bash + +set -e + +pkgname=mate-file-manager + +if [ -f /usr/sbin/mateconfpkg ]; then + /usr/sbin/mateconfpkg --uninstall ${pkgname} +fi + +exit 0 |