Puppet Class: saltstack::syndic

Inherits:
saltstack::params
Inherited by:
saltstack::syndic::install
saltstack::syndic::service
Defined in:
manifests/syndic.pp

Overview

Parameters:

  • manage_package (Any) (defaults to: true)
  • package_ensure (Any) (defaults to: 'installed')
  • manage_service (Any) (defaults to: true)
  • manage_docker_service (Any) (defaults to: true)
  • service_ensure (Any) (defaults to: 'running')
  • service_enable (Any) (defaults to: true)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
# File 'manifests/syndic.pp', line 1

class saltstack::syndic(
                      $manage_package           = true,
                      $package_ensure           = 'installed',
                      $manage_service           = true,
                      $manage_docker_service    = true,
                      $service_ensure           = 'running',
                      $service_enable           = true,
                    ) inherits saltstack::params {


  class { '::saltstack::syndic::install': } ->
  class { '::saltstack::syndic::service': } ->
  Class['::saltstack::syndic']
}