aboutsummaryrefslogtreecommitdiffstats
path: root/community/seatd/seatd.post-upgrade
diff options
context:
space:
mode:
Diffstat (limited to 'community/seatd/seatd.post-upgrade')
-rw-r--r--community/seatd/seatd.post-upgrade14
1 files changed, 14 insertions, 0 deletions
diff --git a/community/seatd/seatd.post-upgrade b/community/seatd/seatd.post-upgrade
new file mode 100644
index 00000000000..5610c11fddd
--- /dev/null
+++ b/community/seatd/seatd.post-upgrade
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+ver_old=$2
+
+if [ "$(apk version -t "$ver_old" '0.6.2-r1')" = '<' ]; then
+ cat >&2 <<-EOF
+ *
+ * seatd-launch has been moved to a separate subpackage. If you use it, run:
+ * apk add cmd:seatd-launch.
+ *
+ EOF
+fi
+
+exit 0