From a0d4cff53b58629f2ecb00ceef8c6c251492cb52 Mon Sep 17 00:00:00 2001 From: Simon Deziel Date: Thu, 17 May 2012 20:21:28 -0400 Subject: Initial commit --- files/README | 2 + manifests/init.pp | 53 ++++++++++++++++++++++++++ manifests/profile.pp | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 157 insertions(+) create mode 100644 files/README create mode 100644 manifests/init.pp create mode 100644 manifests/profile.pp diff --git a/files/README b/files/README new file mode 100644 index 0000000..109a9d5 --- /dev/null +++ b/files/README @@ -0,0 +1,2 @@ +# To have some Ubuntu specific Apparmor profiles: +# git clone https://github.com/simondeziel/aa-profiles diff --git a/manifests/init.pp b/manifests/init.pp new file mode 100644 index 0000000..48e9da5 --- /dev/null +++ b/manifests/init.pp @@ -0,0 +1,53 @@ +# +# == Class: apparmor +# +# Install the Apparmor package and make sure /etc/apparmor.d/local exists. +# +# Note that custom Ubuntu profiles are availables at: +# https://github.com/simondeziel/aa-profiles +# +# === Parameters +# +# None. +# +# === Variables +# +# None. +# +# === Examples +# +# include apparmor +# +# === Authors +# +# Simon Deziel +# +# === Copyright +# +# Copyright 2012 Simon Deziel +# +class apparmor { + + package { 'apparmor': + ensure => present, + } + + $apparmor_d = '/etc/apparmor.d' + file { 'apparmor.d': + ensure => directory, + path => $apparmor_d, + owner => 'root', + group => 'root', + mode => '0755', + require => Package['apparmor'], + } + + file { 'apparmor.d.local': + ensure => directory, + path => "${apparmor_d}/local", + owner => 'root', + group => 'root', + mode => '0755', + require => Package['apparmor'], + } +} diff --git a/manifests/profile.pp b/manifests/profile.pp new file mode 100644 index 0000000..931a74d --- /dev/null +++ b/manifests/profile.pp @@ -0,0 +1,102 @@ +# +# == Define: apparmor::profile +# +# Install an Apparmor profile and a local profile to add/override some rules +# +# === Parameters +# +# [*default_base*] +# Default path to use with $source and $local_source. If unset (default), +# defaults to a distro specific path. +# +# [*source*] +# Source path to the Apparmor profile. If unset (default), defaults to +# "${default_base}/${name}". +# +# [*local_source*] +# Tri-state variable that can be true, false (default) or a source path to the +# local Apparmor profile. If true, uses "${default_base}/local/${name}" as the +# source path to the local Apparmor profile. If false, do not install a local +# profile. If set to something else, use it as the source path. +# +# [*post_cmd*] +# The command to run after installing a profile (usually to restart a daemon). +# If unset (default), no command is run after installing the profile. +# +# === Variables +# +# [*lsbdistrelease*] +# The LSB distribution release number (normally provided as a fact). +# +# === Examples +# +# apparmor::profile { 'usr.sbin.nsd': +# $local_source => true, +# $post_cmd => 'service nsd3 restart', +# } +# +# apparmor::profile { 'usr.sbin.ssmtp': } +# +# apparmor::profile { 'usr.sbin.apt-cacher-ng': +# source => 'puppet:///modules/bar/apt-cacher-ng/aa-profile', +# } +# +# === Authors +# +# Simon Deziel +# +# === Copyright +# +# Copyright 2012 Simon Deziel +# +define apparmor::profile ( + $default_base = "puppet:///modules/apparmor/aa-profiles/${::lsbdistrelease}", + $source = undef, + $local_source = false, + $post_cmd = undef, +) { + + include apparmor + $apparmor_d = $apparmor::apparmor_d + + if $source { + $real_source = $source + } else { + $real_source = "${default_base}/${name}" + } + + file { "${apparmor_d}/${name}": + source => $real_source, + notify => Exec["aa-enable-${name}"], + } + + if ($local_source == true) { + $real_local_source = "${default_base}/local/${name}" + } elsif ($local_source == false) { + $real_local_source = undef + } else { + $real_local_source = $local_source + } + + if $real_local_source { + file { "${apparmor_d}/local/${name}": + source => $real_local_source, + notify => Exec["aa-enable-${name}"], + # Make sure the local profile is installed first to avoid + # calling apparmor_parser without the local profile. + before => File["${apparmor_d}/${name}"], + } + } + + # (Re)load the profile and run the post command + if $post_cmd { + $command = "apparmor_parser -r -T -W ${apparmor_d}/${name} && ${post_cmd}" + } else { + $command = "apparmor_parser -r -T -W ${apparmor_d}/${name}" + } + exec { "aa-enable-${name}": + command => $command, + path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', + refreshonly => true, + } +} -- cgit v1.2.3