diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-10-09 17:22:37 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-10-09 17:22:37 -0300 |
commit | 4ae00704ae467ccab39e2b4c7cdf0940c3fb757c (patch) | |
tree | 924882f0746e4b9a1864509354830c5741753bc5 | |
parent | 1606c8b7be8938d6a32d8920510f6c01ebe24591 (diff) | |
download | puppet-user-4ae00704ae467ccab39e2b4c7cdf0940c3fb757c.tar.gz puppet-user-4ae00704ae467ccab39e2b4c7cdf0940c3fb757c.tar.bz2 |
Minor fix
-rw-r--r-- | manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index bf1f658..bdae082 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -114,8 +114,8 @@ class user { groups => $real_groups, membership => $membership, password => $password, - uid => $real_uid ? { false => undef, default => $real_uid } - gid => $real_gid ? { false => undef, default => $real_gid } + uid => $real_uid ? { false => undef, default => $real_uid }, + gid => $real_gid ? { false => undef, default => $real_gid }, tag => $tag, } |