File: agent.pp

package info (click to toggle)
puppet-module-puppet 18.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 660 kB
  • sloc: ruby: 2,055; sh: 15; makefile: 10
file content (10 lines) | stat: -rw-r--r-- 333 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
# Puppet agent
# @api private
class puppet::agent {
  contain puppet::agent::install
  contain puppet::agent::config
  contain puppet::agent::service

  Class['puppet::agent::install'] ~> Class['puppet::agent::config', 'puppet::agent::service']
  Class['puppet::config', 'puppet::agent::config'] ~> Class['puppet::agent::service']
}