Puppet Class: atop::repo

Defined in:
manifests/repo.pp

Summary

This class is called from the main class to add epel if desired.

Overview



6
7
8
9
10
11
12
# File 'manifests/repo.pp', line 6

class atop::repo {
  assert_private('atop::repo is a private class')

  if $atop::manage_epel {
    include epel
  }
}