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.
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'],
}
}
|