Puppet Class: role::mobilecontentservice

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

Overview

Class: role::mobilecontentservice

This role installs the mobile content service.

Parameters

vhost_name

A virtual domain name for convenient access to the service. See apache::port_alias. Expected to be set up already.

Parameters:

  • vhost_name (Any)


10
11
12
13
14
15
16
17
18
19
20
# File 'puppet/modules/role/manifests/mobilecontentservice.pp', line 10

class role::mobilecontentservice(
    $vhost_name,
) {
    include ::role::restbase
    include ::role::mobilefrontend
    include ::mobilecontentservice

    mediawiki::import::text { 'VagrantRoleMobileContentService':
        content => template('role/mobilecontentservice/VagrantRoleMobileContentService.wiki.erb'),
    }
}