Puppet Class: role::kartotherian

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

Overview

Class: role::kartotherian

The kartotherian role installs the kartotherian service and configures kartographer to use it



4
5
6
7
8
9
10
11
12
13
14
# File 'puppet/modules/role/manifests/kartotherian.pp', line 4

class role::kartotherian {
    include ::kartotherian

    # Make kartographer use local kartotherian
    mediawiki::settings { 'kartographer-kartotherian':
        values   => {
            wgKartographerMapServer  => 'http://localhost:6533',
            wgKartographerIconServer => 'http://localhost:6533',
        },
    }
}