summaryrefslogtreecommitdiff
path: root/system/zsh/zsh.post-upgrade
diff options
context:
space:
mode:
Diffstat (limited to 'system/zsh/zsh.post-upgrade')
-rw-r--r--system/zsh/zsh.post-upgrade19
1 files changed, 19 insertions, 0 deletions
diff --git a/system/zsh/zsh.post-upgrade b/system/zsh/zsh.post-upgrade
new file mode 100644
index 000000000..1b42f8258
--- /dev/null
+++ b/system/zsh/zsh.post-upgrade
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+add-shell '/bin/zsh'
+
+ver_new="$1"
+ver_old="$2"
+
+if [ "$(apk version -t "$ver_old" "5.2-r2")" = "<" ]; then
+ cat <<-EOF
+ *
+ * Some modules has been moved into subpackages:
+ * zsh-calendar calendar function system
+ * zsh-vcs version control information (vcs_info)
+ * zsh-zftp zftp function system
+ *
+ EOF
+fi
+
+exit 0