puppet-apparmor/manifests/init.pp

15 lines
219 B
Puppet

# == Class: apparmor
#
# This is the apparmor module. It simply manages the apparmor service.
#
class apparmor {
package { 'apparmor':
ensure => present,
}
service { 'apparmor':
ensure => running,
}
}