blob: 4d92bfd513b76e3a9ae376379baceb84a6c42611 (
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.13
redirect_uri can be configured on a per service basis.
The default is http://localhost:8080
-----------------------------------------------------------------------------
EOF
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
post_install
}
|