1234567891011121314151617181920212223242526 |
- #!/usr/bin/bash
- set -eu
- dnf update -y
- dnf install -y systemd epel-release
- rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch
- echo "[elasticsearch-7.x]
- name=Elasticsearch repository for 7.x packages
- baseurl=https://artifacts.elastic.co/packages/7.x/yum
- gpgcheck=1
- gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
- enabled=1
- autorefresh=1
- type=rpm-md"| tee /etc/yum.repos.d/elasticsearch-7.x.repo
- dnf install -y elasticsearch
- rpm --import https://dl.packager.io/srv/zammad/zammad/key
- curl -o /etc/yum.repos.d/zammad.repo \
- https://dl.packager.io/srv/zammad/zammad/${CI_COMMIT_REF_NAME}/installer/el/${DISTRIBUTION_VERSION}.repo
- dnf update -y
- dnf install -y --downloadonly zammad
|