Puppet Class: software::utilities::synaptic

Inherits:
software::params
Defined in:
manifests/utilities/synaptic.pp

Overview

Parameters:

  • ensure (Any) (defaults to: $software::params::software_ensure)


5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'manifests/utilities/synaptic.pp', line 5

class software::utilities::synaptic (
  $ensure = $software::params::software_ensure,
) inherits software::params {

  case $facts['os']['name'] {
    'Ubuntu': {
      package { 'synaptic':
        ensure => $ensure,
      }
    }
    default: {
      fail("The ${name} class is not supported on ${facts['os']['name']}.")
    }
  }

}