#! /bin/sh

set -e

if [ "$1" = "remove" -o "$1" = "purge" ]; then
  if [ -x /etc/init.d/staroffice ]; then
    /etc/init.d/staroffice stop
  fi
fi
