deb/repo-add-elastic.bash
author Oleksandr Gavenko <gavenkoa@gmail.com>
Thu, 29 May 2025 22:20:24 +0300
changeset 44 a6779754c20c
parent 1 f497bf96ddc3
permissions -rw-r--r--
Removed unnecessary a2enmod + apache2 restart.

#!/bin/bash

set -e
src=elastic

cmd="curl -o /usr/share/keyrings/$src.asc https://artifacts.elastic.co/GPG-KEY-elasticsearch"
eval $cmd

cat <<EOF >/etc/apt/sources.list.d/$src.list
# https://www.elastic.co/guide/en/elasticsearch/reference/current/deb.html
# For new GPG key use:
#   $cmd

deb [arch=amd64 signed-by=/usr/share/keyrings/$src.asc] https://artifacts.elastic.co/packages/8.x/apt stable main
EOF