diff --git a/CHANGELOG.md b/CHANGELOG.md index e3c9bcc..380808f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 0.1.16 + +* added SLES 12.3 support + ## 0.1.15 * added Ubuntu 18.04 support diff --git a/manifests/params.pp b/manifests/params.pp index 41f2131..8d804b0 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -84,6 +84,12 @@ $service_restart = '/etc/init.d/auditd restart' $service_stop = '/etc/init.d/auditd stop' } + '12.3': + { + $audit_file='/etc/audit/audit.rules' + $service_restart = undef + $service_stop = undef + } default: { fail("Unsupported operating system ${::operatingsystem} ${::operatingsystemrelease}") } } } diff --git a/metadata.json b/metadata.json index 927fb73..a85a60d 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "eyp-audit", - "version": "0.1.15", + "version": "0.1.16", "author": "eyp", "summary": "auditd management", "license": "Apache-2.0",