Puppet Class: varnish::params

Defined in:
manifests/params.pp

Overview



4
5
6
7
8
9
10
11
# File 'manifests/params.pp', line 4

class varnish::params {

  # set Varnish conf location based on OS
  $conf_file_path = $::operatingsystem ? {
    /(?i:Centos|RedHat)/      => '/etc/sysconfig/varnish',
    default                   => '/etc/default/varnish',
  }
}