aboutsummaryrefslogtreecommitdiffstats
path: root/manifests
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-08-04 12:18:40 +0000
committerGerrit Code Review <review@openstack.org>2016-08-04 12:18:40 +0000
commit9c6630787b1607d727ba44e9b5847fb4fc9d2ca6 (patch)
tree765f9c4f5a1467248adbc95f3e15e258d89fb16e /manifests
parentc46bbb5e572cc60101d3860ed8be93de3019ba4d (diff)
parentcc15f15673595ea12819e8aa73b322339b0379b4 (diff)
Merge "Remove unnecessary certmonger manifest"
Diffstat (limited to 'manifests')
-rw-r--r--manifests/certmonger.pp37
1 files changed, 0 insertions, 37 deletions
diff --git a/manifests/certmonger.pp b/manifests/certmonger.pp
deleted file mode 100644
index e5f5e04..0000000
--- a/manifests/certmonger.pp
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2016 Red Hat, Inc.
-#
-# Licensed under the Apache License, Version 2.0 (the "License"); you may
-# not use this file except in compliance with the License. You may obtain
-# a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-# License for the specific language governing permissions and limitations
-# under the License.
-#
-# == Class: tripleo::certmonger
-#
-# Sets some default defaults necessary for the global certmonger setup.
-#
-# === Parameters
-#
-# [*global_ca*]
-# The certmonger nickname for the CA that will be used.
-#
-class tripleo::certmonger (
- $global_ca
-){
- include ::certmonger
-
- Certmonger_certificate {
- ca => $global_ca,
- ensure => 'present',
- certbackend => 'FILE',
- keybackend => 'FILE',
- wait => true,
- require => Class['::certmonger'],
- }
-}