Puppet Class: panos::install
- Defined in:
- manifests/install.pp
Summary
This class installs dependencies of this module into the puppet agent, and/or the puppetserver service.Overview
6 7 8 9 10 11 12 13 |
# File 'manifests/install.pp', line 6
class panos::install {
include panos::install::agent
if $facts['puppetserver_installed'] {
include panos::install::server
}
}
|