
Add Rakefile file Add class document Replace the double quotes Change-Id: I3f38ff0dc150c0cb260e0eb39655fcc351221bd6 Closes-Bug: #1334603
15 lines
219 B
Puppet
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,
|
|
}
|
|
}
|