#!/bin/sh
set -e
case "$1" in
  remove|deconfigure)
    if [ -d /run/systemd/system ]; then
      systemctl stop lightr.service >/dev/null 2>&1 || true
    fi
    ;;
esac
#DEBHELPER#
exit 0
