#!/bin/sh

set -e

SD_PATH="/lib/systemd/system"
TARGET_PATH="/etc/systemd/system/multi-user.target.wants"

case "$1" in
    configure)
        mkdir -p ${TARGET_PATH} || :
        ln -s "${SD_PATH}/oem-workaround-nv-xorg-conf-options.service" ${TARGET_PATH} || :

    ;;
esac

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

#DEBHELPER#

exit 0
