summarylogtreecommitdiffstats
path: root/mailman.install
diff options
context:
space:
mode:
Diffstat (limited to 'mailman.install')
-rw-r--r--mailman.install16
1 files changed, 16 insertions, 0 deletions
diff --git a/mailman.install b/mailman.install
new file mode 100644
index 000000000000..67b1996f4ea9
--- /dev/null
+++ b/mailman.install
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+## arg 1: the new package version
+post_install() {
+ # check file permissions
+ cd /usr/lib/mailman && bin/check_perms > /dev/null
+}
+
+## arg 1: the new package version
+## arg 2: the old package version
+post_upgrade() {
+ # check file permissions
+ cd /usr/lib/mailman && bin/check_perms > /dev/null
+}
+
+# vim:set ts=2 sw=2 ft=sh et: