Puppet Class: role::accountinfo

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

Overview

Class: role::accountinfo

The AccountInfo extension allows users to look at private information that is stored about them. It also includes the CheckUser extension, which AccountInfo integrates with.



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

class role::accountinfo {
    include ::role::checkuser

    mediawiki::extension { 'AccountInfo':
        settings => {
          'wgPutIPinRC' => true,
        },
        require  => Mediawiki::Extension['CheckUser'],
    }
}