summarylogtreecommitdiffstats
path: root/mailman.install
blob: 67b1996f4ea9ebbabc2468d47fff36a92b00dd3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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: