aboutsummaryrefslogtreecommitdiffstats
path: root/debian/postinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/postinst')
-rw-r--r--debian/postinst21
1 files changed, 21 insertions, 0 deletions
diff --git a/debian/postinst b/debian/postinst
new file mode 100644
index 0000000..412cc54
--- /dev/null
+++ b/debian/postinst
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+ configure)
+ chown irc:adm /var/log/hopm
+ chgrp irc /etc/hopm/hopm.conf
+ chmod g+r,o-rwx /etc/hopm/hopm.conf
+ ;;
+ abort-upgrade|abort-remove|abort-deconfigure)
+ ;;
+ *)
+ echo "ERROR: Postinst called with unknown argument!"
+ exit 0
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0