#!/bin/sh set -e USER_TO_RUN_UNOPKG="root" AUX_SUDO_USER=$SUDO_USER SUDO_USER=$USER_TO_RUN_UNOPKG case $1 in remove|purge|abort-install|disappear) echo "Removing old salt plugins" su $USER_TO_RUN_UNOPKG -c "unopkg remove --shared org.openoffice.Office.addon.salt.trad" || true su $USER_TO_RUN_UNOPKG -c "unopkg remove --shared org.openoffice.Office.addon.salt.util" || true ;; *) echo "Nothing to do" ;; esac SUDO_USER=$AUX_SUDO_USER #DEBHELPER#