fedimovies/contrib/debian/postinst.ex
2022-05-06 10:53:36 +00:00

24 lines
397 B
Bash

#!/bin/sh
set -e
case "$1" in
configure)
adduser --system --group --home /var/lib/mitra mitra
;;
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