Puppet Class: cloudera::cdh5::hcatalog

Defined in:
manifests/cdh5/hcatalog.pp

Overview

Class: cloudera::cdh5::hcatalog

This class installes HCatalog.

Parameters:

Actions:

Requires:

Sample Usage:

class { 'cloudera::cdh5::hcatalog': }

Authors:

Mike Arnold <mike@razorsedge.org>

Copyright © 2013 Mike Arnold, unless otherwise noted.



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'manifests/cdh5/hcatalog.pp', line 23

class cloudera::cdh5::hcatalog {
  package { 'hcatalog':
    ensure => 'absent',
    tag    => 'cloudera-cdh5',
  }

  package { 'webhcat':
    ensure => 'absent',
    tag    => 'cloudera-cdh5',
  }
  package { 'hive-hcatalog':
    ensure => 'present',
    tag    => 'cloudera-cdh5',
  }

  package { 'hive-webhcat':
    ensure => 'present',
    tag    => 'cloudera-cdh5',
  }
}