Puppet Class: impala::common::daemon

Defined in:
manifests/common/daemon.pp

Overview

Class impala::common::daemon

Daemon-specific configuration.



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

class impala::common::daemon {
  $debug_enable = $impala::debug_enable
  file { $impala::env_file:
    group   => 'root',
    mode    => '0644',
    owner   => 'root',
    content => template('impala/env.erb'),
  }

  if $impala::realm and $impala::realm != '' {
    file { $impala::keytab:
      group => 'impala',
      mode  => '0400',
      owner => 'impala',
    }
  }
}