summaryrefslogtreecommitdiff
path: root/manifests/spec.pp
diff options
context:
space:
mode:
authorDan Bode <dan@bodepd.com>2010-06-02 11:47:30 -0500
committerDan Bode <dan@bodepd.com>2010-06-02 11:47:30 -0500
commit3b196c0d2053b03007a7a9dd3ef0bf2e2a4f8000 (patch)
treee9cc126033397272aafe242a3052019a23506acb /manifests/spec.pp
parent53accdfa1306b5e405628576c516b8e2c03222e3 (diff)
added comments to all types
Diffstat (limited to 'manifests/spec.pp')
-rw-r--r--manifests/spec.pp2
1 files changed, 2 insertions, 0 deletions
diff --git a/manifests/spec.pp b/manifests/spec.pp
index 1a75afd..78e2d5e 100644
--- a/manifests/spec.pp
+++ b/manifests/spec.pp
@@ -8,6 +8,7 @@
define sudo::spec(
$ensure=present,
$users, $hosts, $commands,
+ $comment='',
$target='/etc/sudoers'
) {
sudoers { $name:
@@ -16,6 +17,7 @@ define sudo::spec(
users => $users,
hosts => $hosts,
commands => $commands,
+ comment => $comment,
target => $target,
}
}