Mettre à jour 'elastic/elastic_install.sh'

This commit is contained in:
Iwan Clément
2018-03-13 11:28:35 +00:00
parent 50de34cb53
commit ecbfbc5f2f

View File

@@ -1,10 +1,12 @@
#!/bin/bash
if [ -f /etc/debian_version ]; then
if [ -f /etc/debian_version ]
then
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | apt-key add -
echo "deb https://artifacts.elastic.co/packages/6.x/apt stable main" | tee -a /etc/apt/sources.list.d/elastic-6.x.list
apt -y update && apt -y install elasticsearch
elif [ -f /etc/redhat-release ]; then
elif [ -f /etc/redhat-release ]
then
DESTDIR="/etc/yum.repos.d"
DESTFILE="elasticsearch.repo"
DESTFILE="$DESTDIR/$DESTFILE"
@@ -17,6 +19,5 @@ elif [ -f /etc/redhat-release ]; then
echo "enabled=1">>"$DESTFILE"
echo "autorefresh=1">>"$DESTFILE"
echo "type=rpm-md">>"$DESTFILE"
yum install -y elasticsearch
fi