summarylogtreecommitdiffstats
path: root/elasticsearch.install
blob: 2b4c4cc21b7b80000142b71c33569c652b0a8de1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
}