Vagrant: icinga_packages: include icinga-php-* from release repo

... as they're not snapshotted.
This commit is contained in:
Alexander A. Klimov 2021-07-15 19:20:26 +02:00
parent 9e0785b0b4
commit d6eda914f9
1 changed files with 9 additions and 0 deletions

View File

@ -14,4 +14,13 @@ class icinga_packages {
gpgkey => 'https://packages.icinga.com/icinga.key',
descr => "Icinga Repository - ${::architecture}"
}
yumrepo { 'icinga_release_packages':
baseurl => "https://packages.icinga.com/epel/${::operatingsystemmajrelease}/release/",
enabled => '1',
gpgcheck => '1',
gpgkey => 'https://packages.icinga.com/icinga.key',
descr => "Icinga Repository - ${::architecture} (release)",
includepkgs => 'icinga-php-*'
}
}