Longgeek b3d5477023 Add Rakefile file and update puppet coding style
Add Rakefile file
Add class document
Replace the double quotes

Change-Id: I3f38ff0dc150c0cb260e0eb39655fcc351221bd6
Closes-Bug: #1334603
2014-10-18 06:40:59 +00:00

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,
}
}