summarylogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorJoan Bruguera2021-05-21 23:44:59 +0200
committerJoan Bruguera2021-05-21 23:46:34 +0200
commita7da61ed498d035303e59da24f02ebdef0a573fb (patch)
tree00175356594fc0d00521478c634d24159e2ece71 /install.sh
parentd33ec60d7fe3fff6c8ba4a364f1b1ec0ec8bbd0f (diff)
downloadaur-a7da61ed498d035303e59da24f02ebdef0a573fb.tar.gz
decK v1.7.0.
Reenable analytics warnings (PR #379).
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/install.sh b/install.sh
new file mode 100755
index 000000000000..ddb90781ece4
--- /dev/null
+++ b/install.sh
@@ -0,0 +1,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
+}