5 lines
255 B
Bash
5 lines
255 B
Bash
#!/bin/bash
|
|
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
|