aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-01-27 16:37:38 +0000
committerGerrit Code Review <review@openstack.org>2017-01-27 16:37:38 +0000
commit181087e448bfb1e676977073068ad25d7ca9d21e (patch)
tree3bf4202a72d77c2f82a5edc0653a2790bc75fd83 /manifests/profile
parent8bb10297ced7a93d93aac0d4e5e0725ab178e557 (diff)
parenteb14c2a9f7acd6a7949e7aee91687756731f93db (diff)
Merge "Add AuditD Profile"
Diffstat (limited to 'manifests/profile')
-rw-r--r--manifests/profile/base/auditd.pp30
1 files changed, 30 insertions, 0 deletions
diff --git a/manifests/profile/base/auditd.pp b/manifests/profile/base/auditd.pp
new file mode 100644
index 0000000..628db08
--- /dev/null
+++ b/manifests/profile/base/auditd.pp
@@ -0,0 +1,30 @@
+# 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::profile::base::auditd
+#
+# auditd profile for tripleo
+#
+# === Parameters
+#
+# [*step*]
+# Defaults to hiera('step')
+#
+class tripleo::profile::base::auditd (
+ $step = hiera('step'),
+) {
+ if $step >= 4 {
+ include ::auditd
+ }
+}