Puppet Class: cfwebapp::redmine::gandi

Defined in:
manifests/redmine/gandi.pp

Overview



6
7
8
9
10
11
12
13
14
15
16
# File 'manifests/redmine/gandi.pp', line 6

class cfwebapp::redmine::gandi {
    # See https://www.redmine.org/issues/24864#change-81746

    file { '/usr/local/share/ca-certificates/GandiStandardSSLCA2.crt':
        content => file('cfwebapp/GandiStandardSSLCA2.pem'),
    }
    -> exec { 'Install GandiStandardSSLCA2':
        command => '/usr/sbin/update-ca-certificates',
        creates => '/etc/ssl/certs/GandiStandardSSLCA2.pem',
    }
}