summarylogtreecommitdiffstats
path: root/mailmotion.install
blob: cf933539b47d5001bbc02e1f975c778701c67ca1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
post_install() {
    pkgname=mailmotion

    # Fixing membership
    chown http: /var/log/$pkgname
    chown -R http: /etc/$pkgname

    true
}

post_upgrade() {
    chown http: /var/log/$pkgname
    chown -R http: /etc/$pkgname

    echo "You must update your config file !"
    
    true
}

pre_remove() {
    true
}