diff --git a/admin-guide/puppet/profiles/repository_list.rst b/admin-guide/puppet/profiles/repository_list.rst index 1c11cec9..52dc7eba 100644 --- a/admin-guide/puppet/profiles/repository_list.rst +++ b/admin-guide/puppet/profiles/repository_list.rst @@ -6,7 +6,7 @@ and filters those according to OS version. This profile is used from Puppet:: - profile::repository_list{'rpm_repos::influx':} + profile::repository_list{'rpm_repos::epel':} Parameters ---------- @@ -30,7 +30,7 @@ then with the rest a repository configuration is writen to the node using ``profile::repository``. The ``osversion`` key in the repository definition signals the major RHEL version for which this repository is for. -Example definition:: +Example:: rpm_repos::repo::epel_rhel8: name: 'epel' @@ -43,9 +43,23 @@ Example definition:: exclude: - "slurm*" + rpm_repos::repo::epel_rhel7: + name: 'epel' + descr: "Extra Packages for Enterprise Linux 7" + baseurl: 'https://repo00.psi.ch/el7/tags/$pli_repo_tag/epel/' + disable: false + gpgcheck: false + osversion: 7 + exclude: + - "slurm*" + + rpm_repos::epel + - epel_rhel7 + - epel_rhel8 + ``accept_empty`` ~~~~~~~~~~~~~~~~ -Do not fail when the repository list is empty after +Do not fail when the repository list is empty after filtering away those not suitable for the current OS.