summarylogtreecommitdiffstats
path: root/rlite.install
blob: d8951c29f863a38e06bcddb0d6bb43bfc2671700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
post_common() {
    depmod -a
}

## arg 1:  the new package version
post_install() {
    post_common
}

## arg 1:  the new package version
## arg 2:  the old package version
post_upgrade() {
    post_common
}

## arg 1:  the old package version
post_remove() {
    post_common
}