blob: ddb90781ece4cb8854f843f18177b6a5b37a21db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env sh
post_install() {
echo "! decK collects anonymized analytics by default"
echo "! It can be disabled by setting the environment variable DECK_ANALYTICS to off"
echo "! For more information, see https://docs.konghq.com/deck/commands/"
echo "! https://github.com/Kong/deck/issues/136"
}
post_upgrade() {
post_install
}
|