This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
authentic2-supann/postinst

25 lines
413 B
Bash

#!/bin/sh
#
# Postinst script for authentic2-supann
#
case "$1" in
configure|reconfigure)
invoke-rc.d authentic2 restart
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0