summarylogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorJoan Bruguera2021-01-06 17:03:33 +0100
committerJoan Bruguera2021-01-06 17:03:51 +0100
commit9e5949303b40e13dac7f34b26fe6294f06491b7c (patch)
tree282e501259c0f35392269815e5c4d64f99e91e0c /install.sh
parente31766a667e0241c5b450c7e0e549535d4de88e1 (diff)
downloadaur-9e5949303b40e13dac7f34b26fe6294f06491b7c.tar.gz
Improvement: Warn about analytics collection.
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/install.sh b/install.sh
new file mode 100755
index 000000000000..3794e709bd09
--- /dev/null
+++ b/install.sh
@@ -0,0 +1,11 @@
+#!/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/"
+}
+
+post_upgrade() {
+ post_install
+}