From f6a3d94fc69e98c812e732f473b77bb34c55faeb Mon Sep 17 00:00:00 2001 From: luke Date: Sat, 27 Jan 2007 22:53:12 +0000 Subject: Fixing #455. A simple fix, fortunately. git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2101 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/puppet/type/user.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') 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 -- cgit