blob: 31458444cafb4a63f18e215342f1c52f3b2133cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
## arg 1: the new package version
post_install() {
cat <<EOF
-----------------------------------------------------------------------------
oama version 0.16
See release notes at: https://github.com/pdobsan/oama/releases/tag/0.16
-----------------------------------------------------------------------------
EOF
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
post_install
}
|