Skip to content

Commit

Permalink
Merge branch 'CHEF-2399'
Browse files Browse the repository at this point in the history
  • Loading branch information
btm committed Jun 4, 2011
2 parents 9d1c9ac + 33be073 commit 627b643
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 1 deletion.
3 changes: 2 additions & 1 deletion chef/lib/chef/platform.rb
Expand Up @@ -126,7 +126,8 @@ def platforms
:default => {
:service => Chef::Provider::Service::Redhat,
:cron => Chef::Provider::Cron,
:package => Chef::Provider::Package::Zypper
:package => Chef::Provider::Package::Zypper,
:group => Chef::Provider::Group::Suse
}
},
:redhat => {
Expand Down
53 changes: 53 additions & 0 deletions chef/lib/chef/provider/group/suse.rb
@@ -0,0 +1,53 @@
#
# Author:: AJ Christensen (<aj@opscode.com>)
# Copyright:: Copyright (c) 2008 OpsCode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require 'chef/provider/group/groupadd'
require 'chef/mixin/shell_out'

class Chef
class Provider
class Group
class Suse < Chef::Provider::Group::Groupadd

include Chef::Mixin::ShellOut

def load_current_resource
super

raise Chef::Exceptions::Group, "Could not find binary /usr/sbin/groupmod for #{@new_resource}" unless ::File.exists?("/usr/sbin/groupmod")
end

def modify_group_members
unless @new_resource.members.empty?
if(@new_resource.append)
@new_resource.members.each do |member|
Chef::Log.debug("#{@new_resource} appending member #{member} to group #{@new_resource.group_name}")
shell_out!("groupmod -A #{member} #{@new_resource.group_name}")
end
else
Chef::Log.debug("#{@new_resource} setting group members to #{@new_resource.members.join(', ')}")
shell_out!("groupmod -A #{@new_resource.members.join(',')} #{@new_resource.group_name}")
end
else
Chef::Log.debug("#{@new_resource} not changing group members, the group has no members")
end
end
end
end
end
end
1 change: 1 addition & 0 deletions chef/lib/chef/providers.rb
Expand Up @@ -84,6 +84,7 @@
require 'chef/provider/group/gpasswd'
require 'chef/provider/group/groupadd'
require 'chef/provider/group/pw'
require 'chef/provider/group/suse'
require 'chef/provider/group/usermod'
require 'chef/provider/group/windows'

Expand Down

0 comments on commit 627b643

Please sign in to comment.