summaryrefslogtreecommitdiff
path: root/manifests/alias.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/alias.pp
parent53accdfa1306b5e405628576c516b8e2c03222e3 (diff)
added comments to all types
Diffstat (limited to 'manifests/alias.pp')
-rw-r--r--manifests/alias.pp2
1 files changed, 2 insertions, 0 deletions
diff --git a/manifests/alias.pp b/manifests/alias.pp
index 6127a23..7a5dd56 100644
--- a/manifests/alias.pp
+++ b/manifests/alias.pp
@@ -7,6 +7,7 @@
define sudo::alias(
$ensure=present,
$sudo_alias, $items,
+ $comment='',
$target='/etc/sudoers'
) {
sudoers { $name:
@@ -14,6 +15,7 @@ define sudo::alias(
ensure => $ensure,
sudo_alias => $sudo_alias,
items => $items,
+ comment => $comment,
target => $target,
}
}