Puppet Class: storm::testca

Defined in:
manifests/testca.pp

Summary

Utility class for internal test purpose. Install test ca repo and package.

Overview



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'manifests/testca.pp', line 3

class storm::testca {

  file { 'test-ca.repo':
    ensure => file,
    path   => '/etc/yum.repos.d/test-ca.repo',
    source => 'puppet:///modules/storm/test-ca.repo',
    mode   => '0644',
  }

  package {
    'igi-test-ca':
      ensure  => latest,
      require => File['test-ca.repo'],;

    'igi-test-ca-2':
      ensure  => latest,
      require => File['test-ca.repo'],;

    'igi-test-ca-256':
      ensure  => latest,
      require => File['test-ca.repo'],;
  }
}