We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4507844 commit 3f5b0d8Copy full SHA for 3f5b0d8
manifests/deploy.pp
@@ -0,0 +1,18 @@
1
+# Handles deploying certificates
2
+#
3
+# === Parameters:
4
5
+# $foreman_proxy:: Deploy certificates needed by Foreman Proxy
6
7
+class certs::deploy (
8
+ Boolean $foreman_proxy = false,
9
+) {
10
+ class { 'certs::foreman_proxy':
11
+ generate => false,
12
+ deploy => $foreman_proxy,
13
+ }
14
+
15
+ if $foreman_proxy {
16
+ Class['certs::foreman_proxy'] ~> Service['foreman-proxy']
17
18
+}
0 commit comments