Puppet Class: ckan::ext::ga_report

Defined in:
manifests/ext/ga_report.pp

Summary

Installs the google analytics report extension.

Overview

Note, requires the googleanalytics extension.

Parameters:

  • revision (String) (defaults to: 'dga-master')

    The version of dcat to install from github. Can be a git branch or git label.

See Also:



11
12
13
14
15
16
17
18
19
# File 'manifests/ext/ga_report.pp', line 11

class ckan::ext::ga_report (
  String $revision = 'dga-master'
) {
  ckan::ext { 'ga_report':
    revision => $revision,
    source   => 'http://github.com/datagovau/ckanext-ga-report',
    plugin   => ['ga-report'],
  }
}