Puppet Class: roundcube::service

Inherits:
roundcube
Defined in:
manifests/service.pp

Overview

Class: roundcube::service

Service management related configuration.

It is a PHP-based web application. Normally, no service needs to be notified. Every change should happen instantly. Hence, the final step of the installation is to update the symbolic link referencing the current version.

Copyright 2015 Martin Meinhold, unless otherwise noted.



12
13
14
15
16
17
18
19
20
21
22
# File 'manifests/service.pp', line 12

class roundcube::service inherits roundcube {

  if str2bool($roundcube::document_root_manage) {
    file { $roundcube::document_root:
      ensure => link,
      target => $roundcube::install::target,
      owner  => 'root',
      group  => 'root',
    }
  }
}