#!/bin/sh
set -e

if [ "$1" = "configure" ]; then
    if [ -d /run/systemd/system ]; then
        systemctl daemon-reload || true
        systemctl restart apt-daily-upgrade.timer || true
    fi
fi

#DEBHELPER#

exit 0
