Puppet Class: role::semanticextraspecialproperties

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

Overview

Class: role::semanticextraspecialproperties

The Semantic Extra Special Properties extension, used in conjunction with the Semantic MediaWiki extension, adds some extra special properties to all content pages in the wiki



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

class role::semanticextraspecialproperties {

    require ::role::mediawiki
    require ::role::semanticmediawiki

    mediawiki::composer::require { 'SemanticExtraSpecialProperties':
        package => 'mediawiki/semantic-extra-special-properties',
        version => '*',
        notify  => Exec['update_all_databases']
    }
}