Puppet Class: znapzend::repos
- Defined in:
- manifests/repos.pp
Overview
This class is called from the main znapzend class for adding needed repos.
5 6 7 8 9 10 11 |
# File 'manifests/repos.pp', line 5
class znapzend::repos {
assert_private('znapzend::repos is a private class')
if $znapzend::manage_epel {
include epel
}
}
|