Puppet Class: cisco_ios::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 cisco_ios::install {
include cisco_ios::install::agent
if $facts['puppetserver_installed'] {
include cisco_ios::install::master
}
}
|