]> gitweb.fluxo.info Git - puppet-user.git/commitdiff
Renaming name_comment to comment
authorSilvio Rhatto <rhatto@riseup.net>
Sat, 15 May 2010 19:17:46 +0000 (16:17 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sat, 15 May 2010 19:17:46 +0000 (16:17 -0300)
manifests/init.pp

index 31a751281f0ecf9cc3338abec4408d83391dbef9..120f14735ef5b2ee727652d37b7a947229870f46 100644 (file)
@@ -14,7 +14,7 @@ class user {
     $groups           = [],
     $managehome       = true,
     $homedir_mode     = '0750',
-    $name_comment     = 'absent',
+    $comment          = 'absent',
     $homedir          = 'absent',
     $password         = 'absent',
     $shell            = 'absent',
@@ -36,9 +36,9 @@ class user {
         default  => $homedir,
       }
   
-      $real_name_comment = $name_comment ? {
+      $real_name_comment = $comment ? {
         'absent' => $name,
-        default  => $name_comment,
+        default  => $comment,
       }
   
       $real_sshkey_type = $sshkey_type ? {