#!/bin/sh

set -e

TARGET_PATH="/etc/systemd/system/multi-user.target.wants"
OEM_PATH="/etc/systemd/system/oem-config.target.wants"

case "$1" in
    remove|upgrade|deconfigure)
        rm -f "${TARGET_PATH}/oem-workaround-nv-xorg-conf-options.service" || :
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0
