diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-01-27 22:53:12 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-01-27 22:53:12 +0000 |
commit | f6a3d94fc69e98c812e732f473b77bb34c55faeb (patch) | |
tree | e7998900285e5858b67125007cdfc9f833309511 /lib | |
parent | 81025d1004f08fee26fa0766da2a87420ba7b971 (diff) | |
download | puppet-f6a3d94fc69e98c812e732f473b77bb34c55faeb.tar.gz puppet-f6a3d94fc69e98c812e732f473b77bb34c55faeb.tar.xz puppet-f6a3d94fc69e98c812e732f473b77bb34c55faeb.zip |
Fixing #455. A simple fix, fortunately.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2101 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/puppet/type/user.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/type/user.rb b/lib/puppet/type/user.rb index 4fb1d02cd..952524826 100755 --- a/lib/puppet/type/user.rb +++ b/lib/puppet/type/user.rb @@ -364,8 +364,8 @@ module Puppet } end - if @states.include?(:groups) and groups = @states[:groups].should.split(",") - autos += groups + if @states.include?(:groups) and groups = @states[:groups].should + autos += groups.split(",") end autos |