mirror of
https://git.icinga.com/packaging/rpm-icinga2.git
synced 2025-09-14 05:38:09 +02:00
19 lines
324 B
Bash
Executable File
19 lines
324 B
Bash
Executable File
#!/bin/bash
|
|
|
|
sudo yum install -y createrepo
|
|
|
|
createrepo $WORKSPACE/archive
|
|
|
|
sudo -E su -c "cat << EOF > /etc/yum.repos.d/local.repo
|
|
[local]
|
|
name=Nyarlathotep
|
|
baseurl=file://$WORKSPACE/archive
|
|
enabled=1
|
|
gpgcheck=0
|
|
EOF"
|
|
|
|
sudo yum update -y
|
|
sudo yum install -y icinga2 mariadb-server icinga2-ido-mysql
|
|
|
|
sudo icinga2 daemon -C
|