publik-common/debian/postinst

24 lines
278 B
Bash

#! /bin/sh
set -e
case "$1" in
configure)
chmod 600 /etc/publik/publik.conf.example
;;
triggered)
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0