summarylogtreecommitdiffstats
path: root/elasticsearch.install
diff options
context:
space:
mode:
Diffstat (limited to 'elasticsearch.install')
-rw-r--r--elasticsearch.install14
1 files changed, 14 insertions, 0 deletions
diff --git a/elasticsearch.install b/elasticsearch.install
new file mode 100644
index 000000000000..f198e73ec4c1
--- /dev/null
+++ b/elasticsearch.install
@@ -0,0 +1,14 @@
+post_install() {
+ systemd-sysusers elasticsearch.conf
+ systemd-tmpfiles --create elasticsearch.conf
+}
+
+post_upgrade(){
+ systemd-tmpfiles --create elasticsearch.conf
+
+ if [ "$(vercmp $2 5.0.0)" -lt 0 ]; then
+ echo " >> "
+ echo " >> Major version update. Please take a look at breaking changes https://www.elastic.co/guide/en/elasticsearch/reference/5.0/breaking-changes-5.0.html and remove incompatible plugins from /usr/share/elasticsearch/plugins"
+ echo " >> "
+ fi
+}