Puppet Class: role::commons_datasets

Defined in:
puppet/modules/role/manifests/commons_datasets.pp

Overview

class role::commons_datasets Allows to store tabular/spatial data on Commons to be used by Kartographer See www.mediawiki.org/wiki/Help:Tabular_Data

commons_url

Full URL to api.php of wiki to use as central repository for datasets

Parameters:

  • commons_url (Any)


8
9
10
11
12
13
14
15
16
17
# File 'puppet/modules/role/manifests/commons_datasets.pp', line 8

class role::commons_datasets (
    $commons_url,
) {
  include ::role::jsonconfig
  include ::role::commons

  mediawiki::settings { 'commons_datasets':
      values => template('role/commons_datasets/settings.php.erb'),
  }
}